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 1772379b04 Merge branch 'main' into elasticity 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' add b1b2557f94 Use custom Transport Factory to set Transport message and frame size (#3737) add 3409d958bb Merge branch '2.1' new 6622274056 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: .../TabletServerBatchReaderIterator.java | 11 +- .../core/clientImpl/TabletServerBatchWriter.java | 260 +++++++++++++++------ .../apache/accumulo/core/clientImpl/Writer.java | 125 ---------- .../org/apache/accumulo/core/conf/Property.java | 10 +- .../core/rpc/AccumuloTFramedTransportFactory.java | 58 +++++ .../org/apache/accumulo/core/rpc/ThriftUtil.java | 7 +- .../apache/accumulo/core/rpc/ThriftUtilTest.java | 132 +++++++++++ .../accumulo/server/problems/ProblemReport.java | 10 +- .../accumulo/server/problems/ProblemReports.java | 5 +- .../server/tablets/UniqueNameAllocator.java | 40 +++- .../accumulo/server/util/MetadataTableUtil.java | 52 ++--- .../accumulo/tserver/TabletClientHandler.java | 97 ++++---- .../org/apache/accumulo/test/BatchWriterIT.java | 101 ++++++++ .../accumulo/test/MetaConstraintRetryIT.java | 13 +- .../apache/accumulo/test/WriteAfterCloseIT.java | 203 ++++++++++++++++ .../test/functional/ThriftMaxFrameSizeIT.java | 115 ++++++--- .../java/org/apache/accumulo/test/util/Wait.java | 2 +- 17 files changed, 900 insertions(+), 341 deletions(-) delete mode 100644 core/src/main/java/org/apache/accumulo/core/clientImpl/Writer.java create mode 100644 core/src/main/java/org/apache/accumulo/core/rpc/AccumuloTFramedTransportFactory.java create mode 100644 core/src/test/java/org/apache/accumulo/core/rpc/ThriftUtilTest.java create mode 100644 test/src/main/java/org/apache/accumulo/test/WriteAfterCloseIT.java