This is an automated email from the ASF dual-hosted git repository. kturner pushed a change to branch 3.1 in repository https://gitbox.apache.org/repos/asf/accumulo.git
from 5e0455a08b Merge branch '2.1' into 3.1 add 7a27d40463 Offers new ways of computing bulk load plans (#4898) new 8386e60353 Merge branch '2.1' into 3.1 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: .../java/org/apache/accumulo/core/Constants.java | 1 + .../core/client/rfile/LoadPlanCollector.java | 131 +++++++++++ .../apache/accumulo/core/client/rfile/RFile.java | 10 + .../accumulo/core/client/rfile/RFileWriter.java | 36 +++- .../core/client/rfile/RFileWriterBuilder.java | 30 ++- .../accumulo/core/clientImpl/bulk/BulkImport.java | 39 +++- .../org/apache/accumulo/core/data/LoadPlan.java | 240 +++++++++++++++++++++ .../apache/accumulo/core/file/FileOperations.java | 5 + .../core/client/rfile/RFileClientTest.java | 210 ++++++++++++++++++ .../apache/accumulo/core/data/LoadPlanTest.java | 48 +++++ .../apache/accumulo/core/file/rfile/RFileTest.java | 1 - .../apache/accumulo/test/functional/BulkNewIT.java | 61 +++++- 12 files changed, 788 insertions(+), 24 deletions(-) create mode 100644 core/src/main/java/org/apache/accumulo/core/client/rfile/LoadPlanCollector.java