Example usage for org.apache.hadoop.yarn.client.api.impl AMRMClientImpl AMRMClientImpl

List of usage examples for org.apache.hadoop.yarn.client.api.impl AMRMClientImpl AMRMClientImpl

Introduction

In this page you can find the example usage for org.apache.hadoop.yarn.client.api.impl AMRMClientImpl AMRMClientImpl.

Prototype

public AMRMClientImpl() 

Source Link

Usage

From source file:org.apache.tez.dag.app.rm.DagAwareYarnTaskScheduler.java

License:Apache License

@Override
public void initialize() throws Exception {
    initialize(new AMRMClientAsyncWrapper(new AMRMClientImpl<TaskRequest>(), 1000, this));
}

From source file:org.apache.tez.dag.app.rm.TestTezAMRMClient.java

License:Apache License

@Before
public void setup() {
    amrmClient = new TezAMRMClientAsync(new AMRMClientImpl(), 1000,
            mock(AMRMClientAsync.CallbackHandler.class));
    RackResolver.init(new Configuration());
}

From source file:org.apache.tez.dag.app.rm.TezAMRMClientAsync.java

License:Apache License

public TezAMRMClientAsync(int intervalMs, CallbackHandler callbackHandler) {
    super(new AMRMClientImpl<T>(), intervalMs, callbackHandler);
}