This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/accumulo-testing.git
from 30cc6bc Merge branch '2.1' add 12dbdb6 Modifications to compile against elasticity branch add 0533dc0 Revert change to properties file add 681f99d Merge branch 'main' into elasticity add f50b292 Update cluster.yaml for elasticity branch changes add a97f1f0 Fix formatting of cluster.yaml.tftpl file add 89b15be Fix compaction service cs1 add af58350 Merge branch 'main' into elasticity add 34909bc Merge branch 'main' into elasticity add ce2fb3a Merge branch 'main' into elasticity add 77643ec merge main into elasticity (#283) add b9809b0 removes use of newly deprecated methods (#284) add 5063a88 updates default config latest 4.0 changes (#285) add 2e19341 limits tablets and offers bulk import as option for ingest add 50ab83b consolidate getting table splits in the code add bc5379c Merge pull request #287 from keith-turner/many-bulk new 81bbae2 Merge branch 'main' into elasticity add 41ba8e8 Allow kerberized run (#142) add 43796e6 Fix Bulk Rwalk (#230) add 7be8409 Merge branch '2.0' into 2.1 add 5cd266a Merge branch '2.1' new 541e75d Merge branch 'main' into elasticity new 8fb9390 Remove unused variable add 697168d Update accumulo dependency to 3.1 new 137ad39 Merge branch '3.1' into elasticity The 4 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: conf/accumulo-testing.properties | 22 +-- .../config-files/templates/cluster.yaml.tftpl | 24 +-- pom.xml | 5 +- .../apache/accumulo/testing/KerberosHelper.java | 85 ++++++++++ .../java/org/apache/accumulo/testing/TestEnv.java | 1 + .../org/apache/accumulo/testing/TestProps.java | 8 + .../testing/continuous/BulkBatchWriter.java | 173 ++++++++++++++++++++ .../testing/continuous/ContinuousIngest.java | 174 +++++++++++++++++++-- .../testing/continuous/ContinuousMoru.java | 8 +- .../accumulo/testing/continuous/ManySplits.java | 9 +- .../apache/accumulo/testing/mapreduce/RowHash.java | 9 +- .../accumulo/testing/mapreduce/TeraSortIngest.java | 5 +- .../performance/tests/SplitBalancingPT.java | 4 +- .../testing/randomwalk/bulk/SelectiveQueueing.java | 3 +- .../testing/randomwalk/concurrent/Config.java | 20 --- .../testing/randomwalk/multitable/CopyTool.java | 11 +- .../randomwalk/sequential/MapRedVerifyTool.java | 10 +- 17 files changed, 499 insertions(+), 72 deletions(-) create mode 100644 src/main/java/org/apache/accumulo/testing/KerberosHelper.java create mode 100644 src/main/java/org/apache/accumulo/testing/continuous/BulkBatchWriter.java