You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2020/11/03 01:35:32 UTC

[accumulo] branch main updated (e929e41 -> a2b476e)

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%)