This is an automated email from the ASF dual-hosted git repository. sivabalan pushed a change to branch release-0.10.1-rc1 in repository https://gitbox.apache.org/repos/asf/hudi.git.
from 97dab47 [HUDI-3010] Unbundle parquet-avro and shade other dependencies in prsto bundle (#4551) (#4578) new 59cfa4b [HUDI-3007] Fix issues in HoodieRepairTool (#4564) new c3fca6d [HUDI-3024] Add explicit write handler for flink (#4329) new 91253ef [HUDI-3120] Cache compactionPlan in buffer (#4463) The 3 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: .../org/apache/hudi/table/repair/RepairUtils.java | 6 +- .../org/apache/hudi/HoodieTestCommitGenerator.java | 183 +++++++++ .../apache/hudi/table/repair/TestRepairUtils.java | 176 +++++++++ .../hudi/execution/ExplicitWriteHandler.java | 65 ++++ .../hudi/execution/FlinkLazyInsertIterable.java | 24 +- .../apache/hudi/io/ExplicitWriteHandleFactory.java | 6 +- .../java/org/apache/hudi/io/FlinkAppendHandle.java | 5 + .../java/org/apache/hudi/common/fs/FSUtils.java | 47 +++ .../org/apache/hudi/common/fs/TestFSUtils.java | 20 +- .../hudi/sink/compact/CompactionCommitSink.java | 20 +- .../apache/hudi/utilities/HoodieRepairTool.java | 235 ++++++------ .../hudi/utilities/TestHoodieRepairTool.java | 409 +++++++++++++++++++++ 12 files changed, 1061 insertions(+), 135 deletions(-) create mode 100644 hudi-client/hudi-client-common/src/test/java/org/apache/hudi/HoodieTestCommitGenerator.java create mode 100644 hudi-client/hudi-client-common/src/test/java/org/apache/hudi/table/repair/TestRepairUtils.java create mode 100644 hudi-client/hudi-flink-client/src/main/java/org/apache/hudi/execution/ExplicitWriteHandler.java create mode 100644 hudi-utilities/src/test/java/org/apache/hudi/utilities/TestHoodieRepairTool.java