HBASE-16049 TestRowProcessorEndpoint is failing on Apache Builds (Guanghao Zhang)

This commit is contained in:
tedyu 2016-06-22 12:24:07 -07:00
parent 3e0602be16
commit 6fc71c5d31
1 changed files with 2 additions and 0 deletions

View File

@ -61,6 +61,7 @@ import org.apache.hadoop.hbase.coprocessor.protobuf.generated.IncrementCounterPr
import org.apache.hadoop.hbase.coprocessor.protobuf.generated.IncrementCounterProcessorTestProtos.TimeoutProcessorRequest;
import org.apache.hadoop.hbase.coprocessor.protobuf.generated.IncrementCounterProcessorTestProtos.TimeoutProcessorResponse;
import org.apache.hadoop.hbase.ipc.CoprocessorRpcChannel;
import org.apache.hadoop.hbase.ipc.RpcScheduler;
import org.apache.hadoop.hbase.protobuf.generated.RowProcessorProtos.ProcessRequest;
import org.apache.hadoop.hbase.protobuf.generated.RowProcessorProtos.ProcessResponse;
import org.apache.hadoop.hbase.protobuf.generated.RowProcessorProtos.RowProcessorService;
@ -120,6 +121,7 @@ public class TestRowProcessorEndpoint {
RowProcessorEndpoint.class.getName());
conf.setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 2);
conf.setLong("hbase.hregion.row.processor.timeout", 1000L);
conf.setLong(RpcScheduler.IPC_SERVER_MAX_CALLQUEUE_LENGTH, 2048);
util.startMiniCluster();
}