Package org.apache.tez.dag.app.rm.container

Examples of org.apache.tez.dag.app.rm.container.AMContainerEventCompleted


  @Override
  public void preemptContainer(ContainerId containerId) {
    taskScheduler.deallocateContainer(containerId);
    // Inform the Containers about completion.
    sendEvent(new AMContainerEventCompleted(ContainerStatus.newInstance(
        containerId, ContainerState.COMPLETE, "Container Preempted Internally", -1), true));
  }
View Full Code Here

TOP

Related Classes of org.apache.tez.dag.app.rm.container.AMContainerEventCompleted

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.