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

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

Introduction

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

Usage

From source file com.yahoo.storm.yarn.StormAMRMClient.java

class StormAMRMClient extends AMRMClientImpl<ContainerRequest> {
    private static final Logger LOG = LoggerFactory.getLogger(StormAMRMClient.class);

    @SuppressWarnings("rawtypes")
    private final Map storm_conf;
    private final YarnConfiguration hadoopConf;

From source file org.apache.samza.job.yarn.util.TestAMRMClientImpl.java

public class TestAMRMClientImpl extends AMRMClientImpl<ContainerRequest> {

    private final AllocateResponse response;
    public List<ContainerRequest> requests = new ArrayList<ContainerRequest>();

    public TestAMRMClientImpl(AllocateResponse response) {

From source file org.apache.tajo.master.rm.YarnRMContainerAllocator.java

public class YarnRMContainerAllocator extends AMRMClientImpl implements EventHandler<ContainerAllocationEvent> {

    /** Class Logger */
    private static final Log LOG = LogFactory.getLog(YarnRMContainerAllocator.class.getName());

    private QueryMasterTask.QueryMasterTaskContext context;