Package org.apache.tez.runtime.task

Examples of org.apache.tez.runtime.task.TezChild


            new ContainerLaunchedEvent(containerId, context.getClock().getTime(),
                context.getApplicationAttemptId());
        context.getHistoryHandler().handle(new DAGHistoryEvent(context.getCurrentDAGID(), lEvt));

        // Pull in configuration specified for the session.
        TezChild tezChild =
            TezChild.newTezChild(defaultConf, null, 0, containerId.toString(), tokenIdentifier,
                attemptNumber, localDirs, workingDirectory);
        tezChild.setUmbilical(tezTaskUmbilicalProtocol);
        return tezChild.run();
      }
    };
  }
View Full Code Here

TOP

Related Classes of org.apache.tez.runtime.task.TezChild

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.