Package org.apache.hadoop.mapred.CoronaJTState

Examples of org.apache.hadoop.mapred.CoronaJTState.Submitter


    } else {
      stateFetcher = new Fetcher();
      commitPermissionClient = new CommitPermissionClient();
    }
    // Start with dummy submitter until saved state is restored
    localJTSubmitter = new Submitter();
   
    initializePJTClient();

    // add this job tracker to cgroup
    Configuration remoteConf = new Configuration();
View Full Code Here


    this.conf = conf;
    this.trackerStats = new TrackerStats(conf);
    this.parentAddr = null;
    this.fs = FileSystem.get(conf);
    this.stateFetcher = new Fetcher();
    this.localJTSubmitter = new Submitter();
    this.jtAttemptId = null;
    this.commitPermissionClient = new CommitPermissionClient();
   
    initializePJTClient();
  }
View Full Code Here

      }

      // Start logging from now (to avoid doubled state, because the code
      // path of restoring the task status is same with the that of runtime)
      if (RemoteJTProxy.isStateRestoringEnabled(conf)) {
        localJTSubmitter = new Submitter(parentClient, jtAttemptId, conf);
      }

      if (stateFetcher.hasTasksState()) {
        // Kill all tasks running on non-existing grants
        LOG.info("Beging to kill non-finnished tasks");
View Full Code Here

TOP

Related Classes of org.apache.hadoop.mapred.CoronaJTState.Submitter

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.