Example usage for org.apache.hadoop.yarn.server.resourcemanager ResourceManager ResourceManager

List of usage examples for org.apache.hadoop.yarn.server.resourcemanager ResourceManager ResourceManager

Introduction

In this page you can find the example usage for org.apache.hadoop.yarn.server.resourcemanager ResourceManager ResourceManager.

Prototype

public ResourceManager() 

Source Link

Usage

From source file:io.hops.metadata.util.DistributedRTRMEvaluation.java

License:Apache License

public void start() throws InterruptedException {
    ResourceManager rm = new ResourceManager();
    rm.init(conf);/*from  ww w.j  ava  2  s  .c  om*/
    rm.start();

    while (true) {
        Thread.sleep(100);
    }
}