This is an automated email from the ASF dual-hosted git repository. cshannon pushed a change to branch no-chop-merge in repository https://gitbox.apache.org/repos/asf/accumulo.git
from 37a12bd3df Cleanup MergeIT add fc793ec9a1 Adjust shell to indicate how re-authtication occurs (#3726) add 59897142d4 Merge branch '2.1' add 4c10226c76 Allow configurable name allocations (#3729) add 5bec1c33af Merge branch '2.1' add f02d2ac500 Improve the UniqueNameAllocator configurability (#3736) add 81c6ae1657 Merge branch '2.1' add f76f12baa6 Remove usages of the Writer class add 1b6dfa7915 Merge branch '2.1' add c78dfc5235 ensures no writes happen after batch writer closes (#3733) add 770c05b46a Merge branch '2.1' new 92365d69ce Merge branch 'main' into no-chop-merge 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: .../core/clientImpl/TabletServerBatchWriter.java | 260 +++++++++++++++------ .../apache/accumulo/core/clientImpl/Writer.java | 122 ---------- .../org/apache/accumulo/core/conf/Property.java | 10 +- .../accumulo/server/problems/ProblemReport.java | 10 +- .../accumulo/server/problems/ProblemReports.java | 5 +- .../server/tablets/UniqueNameAllocator.java | 40 +++- .../accumulo/server/util/MetadataTableUtil.java | 51 ++-- .../accumulo/tserver/TabletClientHandler.java | 97 ++++---- .../main/java/org/apache/accumulo/shell/Shell.java | 16 +- .../org/apache/accumulo/test/BatchWriterIT.java | 95 ++++++++ .../accumulo/test/MetaConstraintRetryIT.java | 13 +- .../apache/accumulo/test/WriteAfterCloseIT.java | 203 ++++++++++++++++ 12 files changed, 626 insertions(+), 296 deletions(-) delete mode 100644 core/src/main/java/org/apache/accumulo/core/clientImpl/Writer.java create mode 100644 test/src/main/java/org/apache/accumulo/test/WriteAfterCloseIT.java