virajjasani commented on code in PR #6462: URL: https://github.com/apache/hbase/pull/6462#discussion_r1845340095
########## hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java: ########## @@ -489,6 +491,15 @@ public class HMaster extends HBaseServerBase<MasterRpcServices> implements Maste public static final String WARMUP_BEFORE_MOVE = "hbase.master.warmup.before.move"; private static final boolean DEFAULT_WARMUP_BEFORE_MOVE = true; + /** + * Use RSProcedureDispatcher instance to initiate master -> rs remote procedure execution. Use + * this config to provide customized RSProcedureDispatcher. Review Comment: With the current master's proc executor initialization, we are not able to provide a setter method for custom RSProcedureDispatcher without making significant changes. Introducing config here to achieve the same is cleaner than setter method but the plan is only for test to use the custom implementation of RSProcedureDispatcher. -- 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]
