From commits-return-23209-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Thu Jul 25 18:41:58 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 7B04318066C for ; Thu, 25 Jul 2019 20:41:58 +0200 (CEST) Received: (qmail 49040 invoked by uid 500); 25 Jul 2019 18:41:57 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 49030 invoked by uid 99); 25 Jul 2019 18:41:57 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jul 2019 18:41:57 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id BF2FE85E8D; Thu, 25 Jul 2019 18:41:57 +0000 (UTC) Date: Thu, 25 Jul 2019 18:41:57 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo] branch master updated (5f03328 -> 75e4255) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156408011749.10362.6517800988944965707@gitbox.apache.org> From: kturner@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 5f03328e7f1b55bd1f24e72ddc54d5d9dc1cc20a X-Git-Newrev: 75e42553d1c030816624430c54b815c249225192 X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. kturner pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/accumulo.git. from 5f03328 Merge branch '2.0' add 48c6b2c Support builds with JDK9 and later add 60f8119 Add logging of top tablets to enable better hot spot detection add 8d6aae5 Improved logging of busiest tablets. add 83429b6 Merge pull request #1291 from keith-turner/accumulo-1187 add 40d954f Merge branch '1.9' into 2.0 new 75e4255 Merge branch '2.0' The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../org/apache/accumulo/core/conf/Property.java | 5 + .../apache/accumulo/tserver/BusiestTracker.java | 92 +++++++++++ .../org/apache/accumulo/tserver/TabletServer.java | 35 +++++ .../org/apache/accumulo/tserver/tablet/Tablet.java | 4 + .../accumulo/tserver/BusiestTrackerTest.java | 168 +++++++++++++++++++++ 5 files changed, 304 insertions(+) create mode 100644 server/tserver/src/main/java/org/apache/accumulo/tserver/BusiestTracker.java create mode 100644 server/tserver/src/test/java/org/apache/accumulo/tserver/BusiestTrackerTest.java