Examples of FallbackLibraryCacheManager


Examples of org.apache.flink.runtime.execution.librarycache.FallbackLibraryCacheManager

    {
      final int blobPort = this.jobManager.getBlobServerPort();

      if (blobPort == -1) {
        LOG.warn("Unable to determine BLOB server address: User library download will not be available");
        this.libraryCacheManager = new FallbackLibraryCacheManager();
      } else {
        final InetSocketAddress blobServerAddress = new InetSocketAddress(
          jobManagerAddress.getAddress(), blobPort);
        LOG.info("Determined BLOB server address to be " + blobServerAddress);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.