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 480c96b3bada chore(trino): advance trino master pin to a0e11d6fef51
add d7360762e1fc fix(core): keep plan generator extra metadata when
scheduling compaction (#19941)
add 7f7f16f7dd79 fix(docker): pull MinIO images from quay.io (#19955)
add c798ccabbbd0 fix(trino): add the reflective HudiTrinoStorage
constructor (#19882)
add e19a990e3dec fix(common): resolve nested Avro records by class built
by Hudi (#19956)
add c55219fbc8ff fix(spark): make binary clustering/bulk-insert sort keys
Comparable (#19622)
add cc76ec191ccd fix: close HTTP InputStream in
fetchSchemaUsingLegacyMethod to prevent socket leak (#19965)
add 82c050203e3d refactor(flink): remove unused FlinkDeleteHelper (#19962)
add 43632ec5161f fix(flink): use restored checkpoint IDs for writers and
RLI caches (#19952)
new e7b1d4e579f6 chore(trino): advance trino master pin to 8aaa92e2173c
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 (480c96b3bada)
\
N -- N -- N refs/heads/bot/trino-pin (e7b1d4e579f6)
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:
...er-compose_hadoop334_hive313_spark359_amd64.yml | 4 +-
...er-compose_hadoop334_hive313_spark359_arm64.yml | 4 +-
...r-compose_hadoop340_hive2310_spark402_amd64.yml | 4 +-
...r-compose_hadoop340_hive2310_spark402_arm64.yml | 4 +-
...r-compose_hadoop340_hive2310_spark411_amd64.yml | 4 +-
...r-compose_hadoop340_hive2310_spark411_arm64.yml | 4 +-
...er-compose_hadoop340_hive313_spark401_amd64.yml | 4 +-
...er-compose_hadoop340_hive313_spark401_arm64.yml | 4 +-
.../compact/ScheduleCompactionActionExecutor.java | 21 ++-
.../TestScheduleCompactionActionExecutor.java | 51 ++++++
.../table/action/commit/FlinkDeleteHelper.java | 128 -------------
.../table/action/commit/TestFlinkDeleteHelper.java | 174 ------------------
.../table/action/commit/TestJavaDeleteHelper.java | 101 ++++++++++
.../apache/spark/sql/HoodieUTF8StringFactory.scala | 19 +-
.../apache/hudi/common/avro/HoodieAvroUtils.java | 18 +-
.../sink/common/AbstractStreamWriteFunction.java | 43 +----
.../sink/partitioner/BucketAssignFunction.java | 2 +-
.../partitioner/index/IndexBackendFactory.java | 41 +----
.../sink/TestStreamWriteOperatorCoordinator.java | 171 +++++++++++++----
.../common/TestAbstractStreamWriteFunction.java | 204 +++++++++++++++++++++
.../index/TestGlobalRecordLevelIndexBackend.java | 35 ++++
hudi-notebooks/docker-compose.yml | 4 +-
.../TestBulkInsertInternalPartitioner.java | 62 +++++++
.../table/action/compact/TestHoodieCompactor.java | 48 +++++
.../plugin/hudi/storage/HudiTrinoStorage.java | 11 ++
.../hudi/storage/TrinoStorageConfiguration.java | 24 ++-
.../plugin/hudi/storage/TestHudiTrinoStorage.java | 89 +++++++++
.../utilities/schema/SchemaRegistryProvider.java | 6 +-
pom.xml | 2 +-
29 files changed, 845 insertions(+), 441 deletions(-)
delete mode 100644
hudi-client/hudi-flink-client/src/main/java/org/apache/hudi/table/action/commit/FlinkDeleteHelper.java
delete mode 100644
hudi-client/hudi-flink-client/src/test/java/org/apache/hudi/table/action/commit/TestFlinkDeleteHelper.java
create mode 100644
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/sink/common/TestAbstractStreamWriteFunction.java