This is an automated email from the ASF dual-hosted git repository.
voonhous pushed a change to branch release-1.2.1
in repository https://gitbox.apache.org/repos/asf/hudi.git
from a132f0af254e feat(spark): add repair_orphan_files stored procedure
(#19121)
new f17346a6574c fix: remove the dependency to flink-table-planner (#19131)
new 605d2e4bff54 chore(glue-sync): Ignore EntityNotFoundException when
dropping Glue partitions (#19142)
new 6efa2525845f fix(storage-format): return all records when scanning
multi-block native HFiles (#19146)
new 2acbe6514ee0 fix(build): restore imports dropped by earlier
cherry-picks
The 4 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:
.../hudi/aws/sync/AWSGlueCatalogSyncClient.java | 20 +-
.../hudi/aws/sync/TestAWSGlueSyncClient.java | 56 +++
.../org/apache/hudi/common/HoodieJsonPayload.java | 1 +
hudi-examples/hudi-examples-flink/pom.xml | 13 +-
hudi-flink-datasource/hudi-flink/pom.xml | 13 +-
.../AppendWriteFunctionWithBIMBufferSort.java | 6 +-
.../AppendWriteFunctionWithContinuousSort.java | 6 +-
...AppendWriteFunctionWithDisruptorBufferSort.java | 6 +-
.../hudi/sink/bulk/sort/SortOperatorGen.java | 433 ++++++++++++++++++++-
.../hudi/sink/clustering/ClusteringOperator.java | 11 +-
.../sink/clustering/HoodieFlinkClusteringJob.java | 5 +-
...Executor.java => FlinkTransformationUtils.java} | 33 +-
.../java/org/apache/hudi/sink/utils/Pipelines.java | 9 +-
.../org/apache/hudi/sink/v2/utils/PipelinesV2.java | 4 +-
.../hudi/sink/bulk/sort/TestSortOperatorGen.java | 138 +++++++
.../sink/cluster/ITTestHoodieFlinkClustering.java | 10 +-
.../index/TestGlobalRecordLevelIndexBackend.java | 1 -
.../hudi/table/catalog/TestHoodieCatalog.java | 5 +-
.../hudi/table/catalog/TestHoodieHiveCatalog.java | 6 +-
hudi-flink-datasource/hudi-flink1.18.x/pom.xml | 6 -
hudi-flink-datasource/hudi-flink1.19.x/pom.xml | 6 -
hudi-flink-datasource/hudi-flink1.20.x/pom.xml | 6 -
hudi-flink-datasource/hudi-flink2.0.x/pom.xml | 6 -
hudi-flink-datasource/hudi-flink2.1.x/pom.xml | 6 -
.../org/apache/hudi/io/hfile/HFileDataBlock.java | 6 +-
.../hudi/io/hfile/TestHFileMultiBlockScan.java | 94 +++++
pom.xml | 13 +-
27 files changed, 796 insertions(+), 123 deletions(-)
copy
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/sink/utils/{SamplingActionExecutor.java
=> FlinkTransformationUtils.java} (55%)
create mode 100644
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/sink/bulk/sort/TestSortOperatorGen.java
create mode 100644
hudi-io/src/test/java/org/apache/hudi/io/hfile/TestHFileMultiBlockScan.java