Java Code Examples for org.apache.hadoop.yarn.server.resourcemanager.ResourceManager#getClientRMService()

The following examples show how to use org.apache.hadoop.yarn.server.resourcemanager.ResourceManager#getClientRMService() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RMAppAttemptBlock.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Inject
RMAppAttemptBlock(ViewContext ctx, ResourceManager rm, Configuration conf) {
  super(rm.getClientRMService(), ctx);
  this.rm = rm;
  this.conf = conf;
}
 
Example 2
Source File: RMAppBlock.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Inject
RMAppBlock(ViewContext ctx, Configuration conf, ResourceManager rm) {
  super(rm.getClientRMService(), ctx, conf);
  this.rm = rm;
  this.conf = conf;
}
 
Example 3
Source File: RMAppAttemptBlock.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Inject
RMAppAttemptBlock(ViewContext ctx, ResourceManager rm, Configuration conf) {
  super(rm.getClientRMService(), ctx);
  this.rm = rm;
  this.conf = conf;
}
 
Example 4
Source File: RMAppBlock.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Inject
RMAppBlock(ViewContext ctx, Configuration conf, ResourceManager rm) {
  super(rm.getClientRMService(), ctx, conf);
  this.rm = rm;
  this.conf = conf;
}