Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 7B5FB200B63 for ; Mon, 15 Aug 2016 22:30:08 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 79F32160AA7; Mon, 15 Aug 2016 20:30:08 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C0A37160A8A for ; Mon, 15 Aug 2016 22:30:07 +0200 (CEST) Received: (qmail 42744 invoked by uid 500); 15 Aug 2016 20:30:07 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 42735 invoked by uid 99); 15 Aug 2016 20:30:06 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Aug 2016 20:30:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9E977DFF87; Mon, 15 Aug 2016 20:30:06 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: stack@apache.org To: commits@hbase.apache.org Message-Id: <7542e27810534dbe84567bbab5f3fcf2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-16341 Missing bit on "Regression: Random Read/WorkloadC slower in 1.x than 0.98" Date: Mon, 15 Aug 2016 20:30:06 +0000 (UTC) archived-at: Mon, 15 Aug 2016 20:30:08 -0000 Repository: hbase Updated Branches: refs/heads/branch-1.3 8f5b70ac3 -> f32016614 HBASE-16341 Missing bit on "Regression: Random Read/WorkloadC slower in 1.x than 0.98" Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f3201661 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f3201661 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f3201661 Branch: refs/heads/branch-1.3 Commit: f320166142c00b8bb60574d3ba7b586c07c6780c Parents: 8f5b70a Author: stack Authored: Sat Aug 13 20:16:44 2016 -0700 Committer: stack Committed: Mon Aug 15 13:29:59 2016 -0700 ---------------------------------------------------------------------- .../java/org/apache/hadoop/hbase/ipc/SimpleRpcScheduler.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/f3201661/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcScheduler.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcScheduler.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcScheduler.java index a516973..a1cf8c2 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcScheduler.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/SimpleRpcScheduler.java @@ -93,9 +93,7 @@ public class SimpleRpcScheduler extends RpcScheduler implements ConfigurationObs replicationExecutor.resizeQueues(conf); } - String callQueueType = conf.get(CALL_QUEUE_TYPE_CONF_KEY, - CALL_QUEUE_TYPE_DEADLINE_CONF_VALUE); - + String callQueueType = conf.get(CALL_QUEUE_TYPE_CONF_KEY, CALL_QUEUE_TYPE_CONF_DEFAULT); if (isCodelQueueType(callQueueType)) { // update CoDel Scheduler tunables int codelTargetDelay = conf.getInt(CALL_QUEUE_CODEL_TARGET_DELAY, @@ -181,8 +179,7 @@ public class SimpleRpcScheduler extends RpcScheduler implements ConfigurationObs this.highPriorityLevel = highPriorityLevel; this.abortable = server; - String callQueueType = conf.get(CALL_QUEUE_TYPE_CONF_KEY, - CALL_QUEUE_TYPE_FIFO_CONF_VALUE); + String callQueueType = conf.get(CALL_QUEUE_TYPE_CONF_KEY, CALL_QUEUE_TYPE_CONF_DEFAULT); float callqReadShare = conf.getFloat(CALL_QUEUE_READ_SHARE_CONF_KEY, 0); float callqScanShare = conf.getFloat(CALL_QUEUE_SCAN_SHARE_CONF_KEY, 0);