You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by vb...@apache.org on 2020/08/08 19:44:27 UTC

[hudi] branch master updated (5ee676e -> 9fe2d2b)

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

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


    from 5ee676e  [MINOR] Move a test method to Transformations (#1934)
     add 9fe2d2b  [HUDI-427] [HUDI-971]  Implement CLI support for performing bootstrap (#1869)

No new revisions were added by this update.

Summary of changes:
 hudi-cli/pom.xml                                   |   7 +
 .../apache/hudi/cli/commands/BootstrapCommand.java | 186 +++++++++++++++++++++
 .../org/apache/hudi/cli/commands/SparkMain.java    |  55 +++++-
 .../hudi/cli/integ/ITTestBootstrapCommand.java     | 114 +++++++++++++
 .../bootstrap/BootstrapCommitActionExecutor.java   |   2 +-
 .../hudi/table/TestHoodieMergeOnReadTable.java     |   6 +-
 .../common/bootstrap/index/BootstrapIndex.java     |   7 +-
 .../bootstrap/index/HFileBootstrapIndex.java       |  70 +++++++-
 .../hudi/common/bootstrap/TestBootstrapIndex.java  |  20 ++-
 .../java/org/apache/hudi/client/TestBootstrap.java |   6 +-
 .../org/apache/hudi/utilities/UtilHelpers.java     |   3 +-
 11 files changed, 448 insertions(+), 28 deletions(-)
 create mode 100644 hudi-cli/src/main/java/org/apache/hudi/cli/commands/BootstrapCommand.java
 create mode 100644 hudi-cli/src/test/java/org/apache/hudi/cli/integ/ITTestBootstrapCommand.java