You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by dl...@apache.org on 2023/06/01 11:33:42 UTC

[accumulo] branch elasticity updated (9cd9fa8921 -> 729115a63b)

This is an automated email from the ASF dual-hosted git repository.

dlmarion pushed a change to branch elasticity
in repository https://gitbox.apache.org/repos/asf/accumulo.git


    from 9cd9fa8921 Removed SplitScanner, moved into TabletGroupWatcher (#3439)
     add d4a55591dc Deprecate GC_TRASH_IGNORE, add tests to confirm Trash works (#3436)
     add f660cc3009 Merge branch '2.1'
     new 729115a63b Merge branch 'main' into elasticity

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    |   1 +
 .../miniclusterImpl/MiniAccumuloClusterImpl.java   |   1 +
 .../miniclusterImpl/MiniAccumuloConfigImpl.java    |  21 ++++
 .../accumulo/server/fs/VolumeManagerImpl.java      |   4 +
 .../main/java/org/apache/accumulo/gc/GCRun.java    |  10 +-
 .../apache/accumulo/gc/SimpleGarbageCollector.java |   4 +-
 .../accumulo/gc/SimpleGarbageCollectorTest.java    |   6 +-
 .../test/functional/GarbageCollectorTrashBase.java | 125 +++++++++++++++++++++
 .../functional/GarbageCollectorTrashDefaultIT.java |  88 +++++++++++++++
 .../GarbageCollectorTrashDisabledIT.java           |  86 ++++++++++++++
 ...GarbageCollectorTrashEnabledCustomPolicyIT.java | 114 +++++++++++++++++++
 .../functional/GarbageCollectorTrashEnabledIT.java |  84 ++++++++++++++
 test/src/main/resources/log4j2-test.properties     |   3 +
 13 files changed, 542 insertions(+), 5 deletions(-)
 create mode 100644 test/src/main/java/org/apache/accumulo/test/functional/GarbageCollectorTrashBase.java
 create mode 100644 test/src/main/java/org/apache/accumulo/test/functional/GarbageCollectorTrashDefaultIT.java
 create mode 100644 test/src/main/java/org/apache/accumulo/test/functional/GarbageCollectorTrashDisabledIT.java
 create mode 100644 test/src/main/java/org/apache/accumulo/test/functional/GarbageCollectorTrashEnabledCustomPolicyIT.java
 create mode 100644 test/src/main/java/org/apache/accumulo/test/functional/GarbageCollectorTrashEnabledIT.java


[accumulo] 01/01: Merge branch 'main' into elasticity

Posted by dl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dlmarion pushed a commit to branch elasticity
in repository https://gitbox.apache.org/repos/asf/accumulo.git

commit 729115a63b7967d5e3188ff966a56d57b7719c17
Merge: 9cd9fa8921 f660cc3009
Author: Dave Marion <dl...@apache.org>
AuthorDate: Thu Jun 1 11:33:17 2023 +0000

    Merge branch 'main' into elasticity

 .../org/apache/accumulo/core/conf/Property.java    |   1 +
 .../miniclusterImpl/MiniAccumuloClusterImpl.java   |   1 +
 .../miniclusterImpl/MiniAccumuloConfigImpl.java    |  21 ++++
 .../accumulo/server/fs/VolumeManagerImpl.java      |   4 +
 .../main/java/org/apache/accumulo/gc/GCRun.java    |  10 +-
 .../apache/accumulo/gc/SimpleGarbageCollector.java |   4 +-
 .../accumulo/gc/SimpleGarbageCollectorTest.java    |   6 +-
 .../test/functional/GarbageCollectorTrashBase.java | 125 +++++++++++++++++++++
 .../functional/GarbageCollectorTrashDefaultIT.java |  88 +++++++++++++++
 .../GarbageCollectorTrashDisabledIT.java           |  86 ++++++++++++++
 ...GarbageCollectorTrashEnabledCustomPolicyIT.java | 114 +++++++++++++++++++
 .../functional/GarbageCollectorTrashEnabledIT.java |  84 ++++++++++++++
 test/src/main/resources/log4j2-test.properties     |   3 +
 13 files changed, 542 insertions(+), 5 deletions(-)