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 e7b1d4e579f6 chore(trino): advance trino master pin to 8aaa92e2173c
     add c244b8504f8a feat(flink): add compaction failure metrics for early 
detection (#19968)
     add 3e3b98c461da fix(flink): support vector columns in CDC reads (#19903)
     add 72b927141324 chore(trino): check hudi-trino dependency drift (#19959)
     add 5ba8d7ca1915 test(trino): build the E2E server image from the pin 
(#19953)
     add 77b65597592c fix(flink): handle index write buffer failures and 
resource cleanup (#19973)
     add e71e6cc3f07c refactor(client): remove unused FlinkHoodieIndex and 
JavaHoodieIndex (#19975)
     new 02ceba1fcfdf chore(trino): advance trino master pin to 4cb0e8773fab

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   (e7b1d4e579f6)
            \
             N -- N -- N   refs/heads/bot/trino-pin (02ceba1fcfdf)

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:
 .github/workflows/hudi_trino_dependency_drift.yml  | 215 ++++++++++
 .github/workflows/hudi_trino_e2e.yml               | 116 ++----
 docker/README.md                                   |   6 +-
 docker/trino/Dockerfile                            |   6 +-
 docker/trino/build_image.sh                        |  23 +-
 docker/trino/build_trino_server_image.sh           | 145 +++++++
 docker/trino/overlay-entrypoint.sh                 |  32 +-
 .../org/apache/hudi/index/FlinkHoodieIndex.java    |  74 ----
 .../org/apache/hudi/index/JavaHoodieIndex.java     |  71 ----
 .../hudi/common/table/cdc/HoodieCDCUtils.java      |  17 +
 .../hudi/common/table/cdc/TestHoodieCDCUtils.java  |  76 ++++
 .../hudi/metrics/FlinkCompactionMetrics.java       |  15 +
 .../compact/handler/DataTableCompactHandler.java   |   5 +-
 .../sink/partitioner/index/IndexWriteFunction.java |  34 +-
 .../function/HoodieCdcSplitReaderFunction.java     |  31 +-
 .../table/format/mor/MergeOnReadInputFormat.java   |  37 +-
 .../org/apache/hudi/sink/TestWriteCopyOnWrite.java |  85 ++++
 .../handler/TestDataTableCompactHandler.java       | 121 ++++++
 .../partitioner/index/TestIndexWriteFunction.java  | 132 ++++++
 .../source/reader/function/TestCdcVectorRead.java  | 443 +++++++++++++++++++++
 .../function/TestHoodieCdcSplitReaderFunction.java |   2 +-
 hudi-trino/README.md                               |  21 +-
 hudi-trino/pom.xml                                 |  45 +--
 pom.xml                                            |   5 +-
 release/release_guide.md                           |  32 +-
 scripts/trino/check_dependency_drift.py            | 152 +++++++
 26 files changed, 1615 insertions(+), 326 deletions(-)
 create mode 100644 .github/workflows/hudi_trino_dependency_drift.yml
 create mode 100755 docker/trino/build_trino_server_image.sh
 delete mode 100644 
hudi-client/hudi-flink-client/src/main/java/org/apache/hudi/index/FlinkHoodieIndex.java
 delete mode 100644 
hudi-client/hudi-java-client/src/main/java/org/apache/hudi/index/JavaHoodieIndex.java
 create mode 100644 
hudi-common/src/test/java/org/apache/hudi/common/table/cdc/TestHoodieCDCUtils.java
 create mode 100644 
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/sink/compact/handler/TestDataTableCompactHandler.java
 create mode 100644 
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/sink/partitioner/index/TestIndexWriteFunction.java
 create mode 100644 
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/source/reader/function/TestCdcVectorRead.java
 create mode 100755 scripts/trino/check_dependency_drift.py

Reply via email to