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 e7b3c6680b Merge commit '839e501a467be02cef0492806721b05720c3dfdc'
add 2e31448aab Adds per table and compaction erasure code support (#5743)
new c7205cd1b9 Merge commit '2e31448aabd7012aef86fa21f88d8c94f185ebfc'
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:
.../admin/compaction/CompressionConfigurer.java | 11 +-
.../admin/compaction/ErasureCodeConfigurer.java | 98 +++++++
.../org/apache/accumulo/core/conf/Property.java | 14 +
.../apache/accumulo/core/conf/PropertyType.java | 4 +-
.../ScanType.java => file/rfile/EcEnabled.java} | 6 +-
.../accumulo/core/file/rfile/RFileOperations.java | 44 +++-
.../accumulo/core/conf/PropertyTypeTest.java | 5 +
.../miniclusterImpl/MiniAccumuloClusterImpl.java | 2 +-
.../miniclusterImpl/MiniAccumuloConfigImpl.java | 13 +
.../org/apache/accumulo/server/util/PropUtil.java | 26 +-
.../accumulo/test/compaction/ErasureCodeIT.java | 282 +++++++++++++++++++++
11 files changed, 491 insertions(+), 14 deletions(-)
create mode 100644
core/src/main/java/org/apache/accumulo/core/client/admin/compaction/ErasureCodeConfigurer.java
copy core/src/main/java/org/apache/accumulo/core/{client/admin/ScanType.java
=> file/rfile/EcEnabled.java} (89%)
create mode 100644
test/src/main/java/org/apache/accumulo/test/compaction/ErasureCodeIT.java