This is an automated email from the ASF dual-hosted git repository.
sivabalan pushed a change to branch release-0.12.2-shadow
in repository https://gitbox.apache.org/repos/asf/hudi.git
from 0afeb0ecc25 [HUDI-5353] Close file readers (#7412)
new 38e5a35e76e [HUDI-5078] Fixing isTableService for replace commits
(#7037)
new 8a4c86b9582 [HUDI-5296] Allow disable schema on read after enabling
(#7421)
new 16a89240b25 [HUDI-5348] Cache file slices in HoodieBackedTableMetadata
(#7436)
new d30b7d3857c [HUDI-5373] Different fileids are assigned to the same
bucket (#7433)
new 20956a21ac5 【HUDI-4917】Optimized the way to get HoodieBaseFile of
loadColumnRangesFromFiles of Bloom Index (#6793)
new e346f181624 [HUDI-5351] Handle populateMetaFields when repartitioning
in sort partitioner (#7411)
new a56c00e767f [HUDI-4113] Fix cannot parse <null> schema when use spark
delete sql (#5610)
new 07be18cf1ad [HUDI-5366] Closing metadata writer from within
writeClient (#7437)
The 8 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:
.../apache/hudi/client/BaseHoodieWriteClient.java | 6 +-
.../apache/hudi/index/bloom/HoodieBloomIndex.java | 13 ++-
.../org/apache/hudi/io/HoodieRangeInfoHandle.java | 8 ++
.../java/org/apache/hudi/io/HoodieReadHandle.java | 5 +
.../metadata/HoodieBackedTableMetadataWriter.java | 13 +++
.../java/org/apache/hudi/table/HoodieTable.java | 19 ++-
.../hudi/table/action/BaseActionExecutor.java | 2 +-
.../apache/hudi/client/HoodieFlinkWriteClient.java | 8 +-
.../hudi/table/HoodieFlinkCopyOnWriteTable.java | 6 -
.../hudi/table/HoodieFlinkMergeOnReadTable.java | 6 -
.../hudi/table/HoodieJavaCopyOnWriteTable.java | 6 -
.../hudi/table/HoodieJavaMergeOnReadTable.java | 6 -
.../apache/hudi/client/SparkRDDWriteClient.java | 10 +-
.../MultipleSparkJobExecutionStrategy.java | 6 +-
.../BulkInsertInternalPartitionerFactory.java | 20 ++--
...lkInsertInternalPartitionerWithRowsFactory.java | 19 +--
.../bulkinsert/GlobalSortPartitioner.java | 14 +++
.../bulkinsert/GlobalSortPartitionerWithRows.java | 14 +++
...PartitionPathRepartitionAndSortPartitioner.java | 12 +-
...nPathRepartitionAndSortPartitionerWithRows.java | 12 +-
.../PartitionPathRepartitionPartitioner.java | 12 +-
...artitionPathRepartitionPartitionerWithRows.java | 12 +-
.../PartitionSortPartitionerWithRows.java | 14 +++
.../bulkinsert/RDDPartitionSortPartitioner.java | 14 +++
.../SparkHoodieBackedTableMetadataWriter.java | 1 +
.../hudi/table/HoodieSparkCopyOnWriteTable.java | 5 -
.../hudi/table/HoodieSparkMergeOnReadTable.java | 5 -
.../TestBulkInsertInternalPartitioner.java | 83 ++++++++-----
.../TestBulkInsertInternalPartitionerForRows.java | 69 +++++++----
.../apache/hudi/io/TestHoodieTimelineArchiver.java | 23 ++++
.../hudi/common/table/timeline/HoodieInstant.java | 2 +-
.../hudi/metadata/HoodieBackedTableMetadata.java | 13 ++-
.../hudi/metadata/HoodieTableMetadataUtil.java | 10 +-
.../table/timeline/TestHoodieActiveTimeline.java | 2 +-
.../sink/bucket/BucketStreamWriteFunction.java | 2 +-
.../scala/org/apache/hudi/HoodieBaseRelation.scala | 20 ++--
.../org/apache/hudi/HoodieSparkSqlWriter.scala | 129 ++++++++++++++-------
.../org/apache/hudi/IncrementalRelation.scala | 6 +-
.../sql/hudi/TestAlterTableDropPartition.scala | 62 +++++++++-
.../org/apache/spark/sql/hudi/TestSpark3DDL.scala | 54 ++++++++-
.../apache/hudi/utilities/TestHoodieIndexer.java | 7 +-
41 files changed, 553 insertions(+), 197 deletions(-)