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

github-actions[bot] pushed a change to branch bot/trino-pin
in repository https://gitbox.apache.org/repos/asf/hudi.git


 discard 17efce7499a3 chore(trino): advance trino master pin to cee1916bcda0
     add 29cdee910a0c [MINOR] Do not return a negative Spark partition when a 
hash is Integer.MIN_VALUE (#19776)
     add 14fbc79f7566 perf: defer validation messages on hot paths (#20015)
     add bd38321d4370 fix(heartbeat): don't fail a durable commit when 
heartbeat cleanup races a refresh (#19867)
     add b83445fe6820 fix: close the file writers properly in fail cases 
(#18776)
     add 91510d705b60 perf(flink): scope column stats reads to candidate 
partitions (#19992)
     new 5507a0c47078 chore(trino): advance trino master pin to 9687fe359081

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (17efce7499a3)
            \
             N -- N -- N   refs/heads/bot/trino-pin (5507a0c47078)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 .../client/heartbeat/HoodieHeartbeatClient.java    |  37 ++++-
 .../client/heartbeat/WriterHeartbeatUtils.java     |   7 +-
 .../java/org/apache/hudi/io/BaseCreateHandle.java  |   8 ++
 .../hudi/io/FileGroupReaderBasedMergeHandle.java   |   3 +-
 .../org/apache/hudi/io/HoodieAppendHandle.java     |  29 +++-
 .../org/apache/hudi/io/HoodieBinaryCopyHandle.java |  14 ++
 .../hudi/io/HoodieInlineLogAppendHandle.java       |   7 +-
 .../hudi/io/HoodieMergeHandleWithChangeLog.java    |   9 +-
 .../hudi/io/HoodieNativeLogAppendHandle.java       |  13 +-
 .../apache/hudi/io/HoodieSortedMergeHandle.java    |  16 +--
 .../org/apache/hudi/io/HoodieWriteMergeHandle.java |  36 +++--
 .../heartbeat/TestHoodieHeartbeatClient.java       | 152 +++++++++++++++++++++
 .../org/apache/hudi/io/TestHoodieAppendHandle.java |  45 +++++-
 .../apache/hudi/io/TestHoodieBinaryCopyHandle.java |  74 ++++++++++
 .../org/apache/hudi/io/TestHoodieCreateHandle.java |  52 +++++--
 .../hudi/io/TestHoodieNativeLogAppendHandle.java   |  62 +++++++++
 .../io/TestSortedAndChangeLogMergeHandles.java     | 107 +++++++++++++++
 .../hudi/client/model/AbstractHoodieRowData.java   |   2 +-
 .../HoodieRowDataParquetOutputStreamWriter.java    |   9 +-
 .../apache/hudi/client/CoalescingPartitioner.java  |   4 +-
 .../partitioner/ConditionalRangePartitioner.java   |   2 +-
 .../bulkinsert/PartitionPathRDDPartitioner.java    |   4 +-
 .../io/storage/HoodieSparkParquetStreamWriter.java |  27 ++--
 .../hudi/client/TestCoalescingPartitioner.java     |  38 ++++++
 .../TestPartitionPathRDDPartitioner.java           |  54 ++++++++
 .../hudi/common/avro/MercifulJsonConverter.java    |   2 +-
 .../index/hfile/HFileBootstrapIndexWriter.java     |  58 ++++++--
 .../common/schema/HoodieSchemaCompatibility.java   |   2 +-
 .../hudi/common/table/log/HoodieLogFileReader.java |   6 +-
 .../apache/hudi/common/util/CloseableUtils.java    |   9 +-
 .../apache/hudi/common/util/HoodieVectorUtils.java |   2 +-
 .../hudi/metadata/HoodieMetadataPayload.java       |   8 +-
 .../hudi/metadata/MetadataPartitionType.java       |   6 +-
 .../hudi/common/util/TestCloseableUtils.java       |  46 ++++++-
 .../sink/buffer/PreemptiveMemorySegmentPool.java   |   2 +-
 .../org/apache/hudi/sink/buffer/RowDataBucket.java |   2 +-
 .../sink/partitioner/GroupedInsertPartitioner.java |   2 +-
 .../apache/hudi/source/ExpressionEvaluators.java   |   2 +-
 .../java/org/apache/hudi/source/FileIndex.java     |  13 +-
 .../function/AbstractSplitReaderFunction.java      |   2 +-
 .../source/split/HoodieSourceSplitComparator.java  |   4 +-
 .../apache/hudi/source/stats/ColumnStatsIndex.java |   7 +-
 .../apache/hudi/source/stats/FileStatsIndex.java   |  27 ++--
 .../hudi/source/stats/PartitionStatsIndex.java     |   5 +-
 .../hudi/table/format/cdc/CdcImageManager.java     |   2 +-
 .../java/org/apache/hudi/source/TestFileIndex.java | 127 +++++++++++++++++
 .../hudi/source/stats/TestColumnStatsIndex.java    |  53 ++++++-
 .../org/apache/hudi/common/util/ParquetUtils.java  |  13 +-
 .../io/storage/hadoop/HoodieAvroHFileWriter.java   |  17 ++-
 .../storage/hadoop/HoodieParquetStreamWriter.java  |  27 ++--
 .../parquet/io/HoodieParquetBinaryCopyBase.java    | 116 ++++++++++------
 .../parquet/io/HoodieParquetFileBinaryCopier.java  |  27 +++-
 .../io/hadoop/TestHoodieHFileReaderWriter.java     |  34 +++++
 ...HoodieParquetBinaryCopyBaseSchemaEvolution.java |   2 +-
 .../io/TestHoodieParquetBinaryCopyLifecycle.java   | 118 ++++++++++++++++
 .../TestHoodieParquetFileBinaryCopierPrefetch.java |  21 +++
 .../BootstrapColumnStichingRecordReader.java       |   2 +-
 .../apache/hudi/storage/inline/InLineFSUtils.java  |   2 +-
 .../org/apache/spark/sql/hudi/SparkHelpers.scala   |  18 ++-
 pom.xml                                            |   2 +-
 60 files changed, 1388 insertions(+), 209 deletions(-)
 create mode 100644 
hudi-client/hudi-client-common/src/test/java/org/apache/hudi/io/TestHoodieBinaryCopyHandle.java
 create mode 100644 
hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/execution/bulkinsert/TestPartitionPathRDDPartitioner.java
 create mode 100644 
hudi-hadoop-common/src/test/java/org/apache/hudi/parquet/io/TestHoodieParquetBinaryCopyLifecycle.java

Reply via email to