Package org.apache.flink.runtime.instance

Examples of org.apache.flink.runtime.instance.LocalInstanceManager


    LOG.info("Starting job manager in " + executionMode + " mode");

    // Try to load the instance manager for the given execution mode
    if (executionMode == ExecutionMode.LOCAL) {
      final int numTaskManagers = GlobalConfiguration.getInteger(ConfigConstants.LOCAL_INSTANCE_MANAGER_NUMBER_TASK_MANAGER, 1);
      this.instanceManager = new LocalInstanceManager(numTaskManagers);
    }
    else if (executionMode == ExecutionMode.CLUSTER) {
      this.instanceManager = new InstanceManager();
    }
    else {
View Full Code Here

TOP

Related Classes of org.apache.flink.runtime.instance.LocalInstanceManager

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.