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 10809821c15f chore(trino): advance trino master pin to 107f5151e477
add 2c14ff2779dd fix(spark): align libthrift with the Hive 2.3.10 client
jars (#19682)
add bbb2a3a26fa4 fix(lock): stop guarding the filesystem lock with an
interned string literal and make the provider serializable (#19486)
add 0972489a1678 fix: support reading tables partitioned on a nested
column (#19123)
add e04f07d9c855 [MINOR] Reword the hive.libthrift.version comment in the
root pom (#19704)
add 6fc3ff2a5dae fix(kinesis): replace ASL-licensed KPL deaggregation with
a native decoder (#19707)
add 17ca3b661bb1 fix(flink): keep the declared joda-time in
hudi-flink-bundle with flink-bundle-shade-hive2 (#19711)
add 2460f8bed20a feat(spark): add DeltaStreamer checkpoint procedures
(#19631)
new 23a4de1f85f7 chore(trino): advance trino master pin to 68dae096719f
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 (10809821c15f)
\
N -- N -- N refs/heads/bot/trino-pin (23a4de1f85f7)
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:
.../lock/FileSystemBasedLockProvider.java | 102 +++++--
.../FileSystemBasedLockProviderTestClass.java | 19 +-
.../lock/TestFileSystemBasedLockProvider.java | 313 +++++++++++++++++++++
.../org/apache/hudi/storage/HoodieStorage.java | 4 +
.../HoodieFileGroupReaderBasedFileFormat.scala | 25 +-
hudi-spark-datasource/hudi-spark/pom.xml | 25 ++
.../DeltaStreamerCheckpointProcedure.scala | 205 ++++++++++++++
.../hudi/command/procedures/HoodieProcedures.scala | 2 +
.../TestFileGroupReaderPartitionColumn.scala | 130 ++++++++-
.../TestDeltaStreamerCheckpointProcedure.scala | 199 +++++++++++++
hudi-utilities/pom.xml | 6 -
.../sources/helpers/KinesisDeaggregator.java | 184 ++++++++++--
.../utilities/sources/TestShardRecordIterator.java | 75 ++++-
.../utilities/sources/helpers/KplTestUtils.java | 101 +++++++
.../sources/helpers/TestKinesisDeaggregator.java | 290 +++++++++++++++++++
packaging/hudi-aws-bundle/pom.xml | 3 -
packaging/hudi-flink-bundle/pom.xml | 6 +
packaging/hudi-spark-bundle/pom.xml | 33 +++
pom.xml | 36 ++-
19 files changed, 1668 insertions(+), 90 deletions(-)
create mode 100644
hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/spark/sql/hudi/command/procedures/DeltaStreamerCheckpointProcedure.scala
create mode 100644
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/spark/sql/hudi/procedure/TestDeltaStreamerCheckpointProcedure.scala
create mode 100644
hudi-utilities/src/test/java/org/apache/hudi/utilities/sources/helpers/KplTestUtils.java
create mode 100644
hudi-utilities/src/test/java/org/apache/hudi/utilities/sources/helpers/TestKinesisDeaggregator.java