HBASE-17826 Backup: submit M/R job to a particular Yarn queue - addendum fixes variable name (Vladimir Rodionov)

This commit is contained in:
tedyu 2017-09-01 08:45:39 -07:00
parent 43c4bc5761
commit 45470e72f8
1 changed files with 2 additions and 2 deletions

View File

@ -324,9 +324,9 @@ public final class BackupCommands {
.getOptionValue(OPTION_WORKERS)) : -1;
if (cmdline.hasOption(OPTION_YARN_QUEUE_NAME)) {
String poolName = cmdline.getOptionValue(OPTION_YARN_QUEUE_NAME);
String queueName = cmdline.getOptionValue(OPTION_YARN_QUEUE_NAME);
// Set system property value for MR job
System.setProperty("mapreduce.job.queuename", poolName);
System.setProperty("mapreduce.job.queuename", queueName);
}
try (BackupAdminImpl admin = new BackupAdminImpl(conn);) {