[ 
https://issues.apache.org/jira/browse/HBASE-14165?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14704583#comment-14704583
 ] 

Hudson commented on HBASE-14165:
--------------------------------

FAILURE: Integrated in HBase-1.3-IT #105 (See 
[https://builds.apache.org/job/HBase-1.3-IT/105/])
HBASE-14165 The initial size of RWQueueRpcExecutor.queues should be 
(numWriteQueues + numReadQueues + numScanQueues) (Cui Jianwei) (tedyu: rev 
b79326f09be29b56142ef25a299fe35036b2dddb)
* hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/RWQueueRpcExecutor.java


> 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
>            Assignee: cuijianwei
>            Priority: Minor
>             Fix For: 2.0.0, 1.3.0
>
>         Attachments: HBASE-14165-trunk.patch
>
>
> 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)

Reply via email to