[
https://issues.apache.org/jira/browse/HBASE-22559?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16864021#comment-16864021
]
Hudson commented on HBASE-22559:
--------------------------------
Results for branch branch-2.2
[build #365 on
builds.a.o|https://builds.apache.org/job/HBase%20Nightly/job/branch-2.2/365/]:
(x) *{color:red}-1 overall{color}*
----
details (if available):
(/) {color:green}+1 general checks{color}
-- For more information [see general
report|https://builds.apache.org/job/HBase%20Nightly/job/branch-2.2/365//General_Nightly_Build_Report/]
(/) {color:green}+1 jdk8 hadoop2 checks{color}
-- For more information [see jdk8 (hadoop2)
report|https://builds.apache.org/job/HBase%20Nightly/job/branch-2.2/365//JDK8_Nightly_Build_Report_(Hadoop2)/]
(x) {color:red}-1 jdk8 hadoop3 checks{color}
-- For more information [see jdk8 (hadoop3)
report|https://builds.apache.org/job/HBase%20Nightly/job/branch-2.2/365//JDK8_Nightly_Build_Report_(Hadoop3)/]
(/) {color:green}+1 source release artifact{color}
-- See build output for details.
(/) {color:green}+1 client integration test{color}
> [RPC] set guard against CALL_QUEUE_HANDLER_FACTOR_CONF_KEY
> ----------------------------------------------------------
>
> Key: HBASE-22559
> URL: https://issues.apache.org/jira/browse/HBASE-22559
> Project: HBase
> Issue Type: Bug
> Components: rpc
> Reporter: Reid Chan
> Assignee: Reid Chan
> Priority: Minor
> Fix For: 1.5.0, 2.3.0, 2.2.1, 1.4.11
>
> Attachments: HBASE-22559.master.001.patch
>
>
> CALL_QUEUE_HANDLER_FACTOR_CONF_KEY is
> {{hbase.ipc.server.callqueue.handler.factor}}, a float number, which is
> supposed between [0.0, 1.0].
> If it is greater than 1, for example, 2.0, the call queues and handlers will
> be expanded twice:
> {code}
> float callQueuesHandlersFactor =
> this.conf.getFloat(CALL_QUEUE_HANDLER_FACTOR_CONF_KEY, 0);
> this.numCallQueues = computeNumCallQueues(handlerCount,
> callQueuesHandlersFactor);
> this.handlerCount = Math.max(handlerCount, this.numCallQueues);
> protected int computeNumCallQueues(final int handlerCount, final float
> callQueuesHandlersFactor) {
> return Math.max(1, (int) Math.round(handlerCount *
> callQueuesHandlersFactor));
> }
> {code}
> We already have {{hbase.regionserver.handler.count}} set, what mentioned
> above looks tricky.
> The purpose of this conf is to control how many handlers can share one call
> queue, expanding the number of handlers (a kind of side-effects) is not
> included, from my understanding.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)