NihalJain commented on code in PR #6131:
URL: https://github.com/apache/hbase/pull/6131#discussion_r1697929155
##########
hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupCommands.java:
##########
@@ -142,6 +142,12 @@ public void execute() throws IOException {
throw new IOException(INCORRECT_USAGE);
}
+ if (cmdline.hasOption(OPTION_YARN_QUEUE_NAME)) {
+ String queueName = cmdline.getOptionValue(OPTION_YARN_QUEUE_NAME);
+ // Set MR job queuename to configuration
+ getConf().set("mapreduce.job.queuename", queueName);
Review Comment:
Also isn't this change need for BackupDriver? I do see it is being parsed
there.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]