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 2020/01/28 21:36:13 UTC

[accumulo] branch master updated (1c1a304 -> 0ff1542)

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

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


    from 1c1a304  Merge remote-tracking branch 'upstream/master'
     add 9cc673a  fixes #1474: Option to leave cloned tables offline (#1475)
     add 0ff1542  Merge branch '1.9'

No new revisions were added by this update.

Summary of changes:
 .../core/client/admin/CloneConfiguration.java      | 118 +++++++++++++++++++++
 .../core/client/admin/TableOperations.java         |  20 ++++
 .../core/clientImpl/CloneConfigurationImpl.java    | 118 +++++++++++++++++++++
 .../core/clientImpl/TableOperationsImpl.java       |  17 ++-
 .../core/clientImpl/TableOperationsHelperTest.java |   4 +
 .../apache/accumulo/master/FateServiceHandler.java |   9 +-
 .../accumulo/master/tableOps/clone/CloneInfo.java  |   1 +
 .../accumulo/master/tableOps/clone/CloneTable.java |   3 +-
 .../master/tableOps/clone/FinishCloneTable.java    |   6 +-
 .../accumulo/shell/commands/CloneTableCommand.java |  15 ++-
 .../org/apache/accumulo/test/ShellServerIT.java    |  23 ++++
 .../accumulo/test/functional/CloneTestIT.java      |  46 ++++++++
 12 files changed, 372 insertions(+), 8 deletions(-)
 create mode 100644 core/src/main/java/org/apache/accumulo/core/client/admin/CloneConfiguration.java
 create mode 100644 core/src/main/java/org/apache/accumulo/core/clientImpl/CloneConfigurationImpl.java