From commits-return-24311-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Tue Nov 3 01:35:34 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-he-de.apache.org (mxout1-he-de.apache.org [95.216.194.37]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id AD9B0180658 for ; Tue, 3 Nov 2020 02:35:34 +0100 (CET) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-he-de.apache.org (ASF Mail Server at mxout1-he-de.apache.org) with SMTP id 25D4B635D8 for ; Tue, 3 Nov 2020 01:35:34 +0000 (UTC) Received: (qmail 68281 invoked by uid 500); 3 Nov 2020 01:35:33 -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 68267 invoked by uid 99); 3 Nov 2020 01:35:33 -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; Tue, 03 Nov 2020 01:35:33 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 3251B820EB; Tue, 3 Nov 2020 01:35:33 +0000 (UTC) Date: Tue, 03 Nov 2020 01:35:32 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo] branch main updated (e929e41 -> a2b476e) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <160436733176.3513.9913558582612440332@gitbox.apache.org> From: kturner@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Oldrev: e929e41d031ecf61cb5d24ddd2527fdd2d822ee5 X-Git-Newrev: a2b476e68f6dec17df9ec75cc56b888c4442cb39 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 main in repository https://gitbox.apache.org/repos/asf/accumulo.git. from e929e41 Minor cleanup of ZooReaderWriter mutate (#1758) new d5b58e9 Fix #1612 adds per compaction executor metrics new efc7518 Fix #1611 update shell compact command to support new capabilities new 57efdc1 Fix #1629 Dedicated a planning thread for each compaction service new 7ead55c Fix #1608 move rate limiting to compaction services new abc961a Rename throughput to rate.limit #1608 new 79611ee improve comment #1609 new 7dab4af Update test/src/main/java/org/apache/accumulo/test/CompactionRateLimitingIT.java new a2b476e Merge pull request #1649 from keith-turner/accumulo-1629 The 10660 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 | 16 +++- .../org/apache/accumulo/tserver/TabletServer.java | 30 ++----- .../accumulo/tserver/compactions/Compactable.java | 6 +- .../tserver/compactions/CompactionExecutor.java | 48 ++++++++++- .../tserver/compactions/CompactionManager.java | 66 +++++++++++++-- .../tserver/compactions/CompactionService.java | 84 +++++++++++++++++-- .../metrics/CompactionExecutorsMetrics.java | 86 ++++++++++++++++++++ .../tserver/metrics/TabletServerMetricsUtil.java | 14 +--- .../accumulo/tserver/tablet/CompactableImpl.java | 7 +- .../accumulo/tserver/tablet/CompactableUtils.java | 8 +- .../accumulo/shell/commands/CompactCommand.java | 78 +++++++++++++----- .../test/CompactionRateLimitingDeprecatedIT.java | 12 +-- .../accumulo/test/CompactionRateLimitingIT.java | 94 ++++++++++++++-------- 13 files changed, 423 insertions(+), 126 deletions(-) create mode 100644 server/tserver/src/main/java/org/apache/accumulo/tserver/metrics/CompactionExecutorsMetrics.java copy core/src/main/java/org/apache/accumulo/core/compaction/UIntType.java => test/src/main/java/org/apache/accumulo/test/CompactionRateLimitingDeprecatedIT.java (74%)