You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2015/08/19 23:33:48 UTC

[jira] [Assigned] (HBASE-14165) The initial size of RWQueueRpcExecutor.queues should be (numWriteQueues + numReadQueues + numScanQueues)

     [ https://issues.apache.org/jira/browse/HBASE-14165?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ted Yu reassigned HBASE-14165:
------------------------------

    Assignee: cuijianwei

> 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
>         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)