Package org.apache.flink.runtime.execution.librarycache

Examples of org.apache.flink.runtime.execution.librarycache.BlobLibraryCacheManager$LibraryCacheEntry


      } else {
        final InetSocketAddress blobServerAddress = new InetSocketAddress(
          jobManagerAddress.getAddress(), blobPort);
        LOG.info("Determined BLOB server address to be " + blobServerAddress);

        this.libraryCacheManager = new BlobLibraryCacheManager(new BlobCache
            (blobServerAddress), GlobalConfiguration.getConfiguration());
      }
    }
    this.ioManager = new IOManager(tmpDirPaths);
   
View Full Code Here


        ConfigConstants.DEFAULT_JOB_MANAGER_DEAD_TASKMANAGER_TIMEOUT);
   
    // Load the job progress collector
    this.eventCollector = new EventCollector(this.recommendedClientPollingInterval);

    this.libraryCacheManager = new BlobLibraryCacheManager(new BlobServer(),
        GlobalConfiguration.getConfiguration());
   
    // Register simple job archive
    int archived_items = GlobalConfiguration.getInteger(
        ConfigConstants.JOB_MANAGER_WEB_ARCHIVE_COUNT, ConfigConstants.DEFAULT_JOB_MANAGER_WEB_ARCHIVE_COUNT);
View Full Code Here

TOP

Related Classes of org.apache.flink.runtime.execution.librarycache.BlobLibraryCacheManager$LibraryCacheEntry

Copyright © 2018 www.massapicom. 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.