Example usage for org.apache.hadoop.mapreduce MRConfig MR_ACLS_ENABLED

List of usage examples for org.apache.hadoop.mapreduce MRConfig MR_ACLS_ENABLED

Introduction

In this page you can find the example usage for org.apache.hadoop.mapreduce MRConfig MR_ACLS_ENABLED.

Prototype

String MR_ACLS_ENABLED

To view the source code for org.apache.hadoop.mapreduce MRConfig MR_ACLS_ENABLED.

Click Source Link

Usage

From source file:org.apache.oozie.action.hadoop.TestYarnACLHandler.java

License:Apache License

private void setupYarnACLHandler(boolean mrACLsEnabled) {
    launcherConfig = new Configuration();
    launcherConfig.setBoolean(MRConfig.MR_ACLS_ENABLED, mrACLsEnabled);

    yarnACLSetter = new YarnACLHandler(launcherConfig);
}