You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mm...@apache.org on 2022/09/07 16:01:15 UTC

[accumulo] branch main updated (4cc8e3bbe1 -> 98030c3789)

This is an automated email from the ASF dual-hosted git repository.

mmiller pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


    from 4cc8e3bbe1 ScanServerSelector - Break nested interfaces into their own files (#2896)
     add 98030c3789 Add new params to import table (#2879)

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/accumulo/core/Constants.java   |   1 +
 .../core/client/admin/ImportConfiguration.java     | 100 ++++++++++++++
 .../core/client/admin/TableOperations.java         |   7 +-
 .../core/clientImpl/ImportConfigurationImpl.java   |  64 +++++++++
 .../core/clientImpl/TableOperationsImpl.java       |  19 +--
 .../core/client/admin/ImportConfigurationTest.java |  55 ++++++++
 .../core/clientImpl/TableOperationsHelperTest.java |   3 +-
 .../accumulo/manager/FateServiceHandler.java       |  13 +-
 .../tableOps/tableImport/FinishImportTable.java    |  11 +-
 .../manager/tableOps/tableImport/ImportTable.java  |   8 +-
 .../tableOps/tableImport/ImportedTableInfo.java    |   2 +
 .../tableOps/tableImport/MapImportFileNames.java   |   3 +-
 .../tableImport/PopulateMetadataTable.java         |   6 +-
 .../shell/commands/ImportTableCommand.java         |  25 +++-
 .../org/apache/accumulo/test/AuditMessageIT.java   |   3 +-
 .../org/apache/accumulo/test/ImportExportIT.java   | 153 ++++++++++++++++++++-
 .../org/apache/accumulo/test/NamespacesIT.java     |   5 +-
 17 files changed, 448 insertions(+), 30 deletions(-)
 create mode 100644 core/src/main/java/org/apache/accumulo/core/client/admin/ImportConfiguration.java
 create mode 100644 core/src/main/java/org/apache/accumulo/core/clientImpl/ImportConfigurationImpl.java
 create mode 100644 core/src/test/java/org/apache/accumulo/core/client/admin/ImportConfigurationTest.java