HBASE-18104 AMv2: Enabled aggregation of RPCs
Unit test (TestAssignmentManager) uses mock which always aggregates. So added trace level log message and verified manually on a single node cluster. Signed-off-by: Michael Stack <stack@apache.org>
This commit is contained in:
parent
5db63014b0
commit
fa93c0f59a
|
@ -61,7 +61,7 @@ public class RSProcedureDispatcher
|
||||||
"hbase.regionserver.rpc.startup.waittime";
|
"hbase.regionserver.rpc.startup.waittime";
|
||||||
private static final int DEFAULT_RS_RPC_STARTUP_WAIT_TIME = 60000;
|
private static final int DEFAULT_RS_RPC_STARTUP_WAIT_TIME = 60000;
|
||||||
|
|
||||||
private static final int RS_VERSION_WITH_EXEC_PROCS = 0x0201000; // 2.1
|
private static final int RS_VERSION_WITH_EXEC_PROCS = 0x0200000; // 2.0
|
||||||
|
|
||||||
protected final MasterServices master;
|
protected final MasterServices master;
|
||||||
protected final long rsStartupWaitTime;
|
protected final long rsStartupWaitTime;
|
||||||
|
@ -259,6 +259,9 @@ public class RSProcedureDispatcher
|
||||||
final MasterProcedureEnv env = master.getMasterProcedureExecutor().getEnvironment();
|
final MasterProcedureEnv env = master.getMasterProcedureExecutor().getEnvironment();
|
||||||
|
|
||||||
request = ExecuteProceduresRequest.newBuilder();
|
request = ExecuteProceduresRequest.newBuilder();
|
||||||
|
if (LOG.isTraceEnabled()) {
|
||||||
|
LOG.trace("Building request with operations count=" + operations.size());
|
||||||
|
}
|
||||||
splitAndResolveOperation(getServerName(), operations, this);
|
splitAndResolveOperation(getServerName(), operations, this);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue