cuijianwei created HBASE-14165:
----------------------------------
Summary: The initial size of RWQueueRpcExecutor.queues should be
(numWriteQueues + numReadQueues + numScanQueues)
Key: HBASE-14165
URL: https://issues.apache.org/jira/browse/HBASE-14165
Project: HBase
Issue Type: Improvement
Components: rpc
Affects Versions: 0.99.2
Reporter: cuijianwei
Priority: Minor
The RWQueueRpcExecutor.queues will be initialized as:
{code}
queues = new ArrayList<BlockingQueue<CallRunner>>(writeHandlersCount +
readHandlersCount);
{code}
It seems this could be improved as:
{code}
queues = new ArrayList<BlockingQueue<CallRunner>>(numWriteQueues +
numReadQueues + numScanQueues);
{code}
Suggestions are welcomed.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)