[
https://issues.apache.org/jira/browse/HBASE-17661?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15873963#comment-15873963
]
Hudson commented on HBASE-17661:
--------------------------------
FAILURE: Integrated in Jenkins build HBase-1.4 #635 (See
[https://builds.apache.org/job/HBase-1.4/635/])
HBASE-17661 fix the queue length passed to (tedyu: rev
964e17f7b002645bb840c9a5f94802763eda87c4)
* (edit)
hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcScheduler.java
> fix the queue length passed to FastPathBalancedQueueRpcExecutor
> ---------------------------------------------------------------
>
> Key: HBASE-17661
> URL: https://issues.apache.org/jira/browse/HBASE-17661
> Project: HBase
> Issue Type: Bug
> Reporter: CHIA-PING TSAI
> Assignee: CHIA-PING TSAI
> Priority: Minor
> Fix For: 2.0.0, 1.4.0
>
> Attachments: HBASE-17661.branch-1.v0.patch, HBASE-17661.v0.patch
>
>
> {code:title=SimpleRpcScheduler.java|borderStyle=solid}
> if (callqReadShare > 0) {
> // at least 1 read handler and 1 write handler
> callExecutor = new RWQueueRpcExecutor("deafult.RWQ", Math.max(2,
> handlerCount),
> maxQueueLength, priority, conf, server);
> } else {
> if (RpcExecutor.isFifoQueueType(callQueueType)) {
> callExecutor = new FastPathBalancedQueueRpcExecutor("deafult.FPBQ",
> handlerCount,
> maxPriorityQueueLength, priority, conf, server);
> } else {
> callExecutor = new BalancedQueueRpcExecutor("deafult.BQ",
> handlerCount, maxQueueLength,
> priority, conf, server);
> }
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)