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 0014e450d2fb chore(trino): advance trino master pin to 1d44ee6e126b
add e8ca8df14c46 fix(spark): return partition values in Catalyst's
internal representation (#19652)
add 42e885f96783 feat(kinesis): Cross-account Kinesis source support via
STS assume-role in JsonKinesisSource (#19383)
add 697bfe1d000d fix(flink): sort ClientIds heartbeat files numerically
instead of lexicographically (#19653)
add a08988a778e6 fix(flink): disable native log rollover within mini-batch
(#19656)
new 1ff040c0b3c9 chore(trino): advance trino master pin to cf736c07a785
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 (0014e450d2fb)
\
N -- N -- N refs/heads/bot/trino-pin (1ff040c0b3c9)
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:
.../hudi/io/HoodieNativeLogAppendHandle.java | 12 +-
.../apache/hudi/io/FlinkNativeLogAppendHandle.java | 12 ++
.../hudi/io/TestFlinkNativeLogAppendHandle.java | 153 +++++++++++++++++++++
.../scala/org/apache/hudi/HoodieSparkUtils.scala | 59 ++++----
.../hudi/TestHoodieSparkUtilsPartitionValues.scala | 112 +++++++++++++++
.../main/java/org/apache/hudi/util/ClientIds.java | 10 +-
.../java/org/apache/hudi/util/TestClientIds.java | 76 ++++++++++
.../sql/hudi/common/TestTypedPartitionValues.scala | 71 ++++++++++
hudi-utilities/pom.xml | 7 +
.../hudi/utilities/config/KinesisSourceConfig.java | 30 ++++
.../hudi/utilities/sources/JsonKinesisSource.java | 22 ++-
.../sources/helpers/KinesisOffsetGen.java | 66 ++++++++-
.../sources/helpers/KinesisReadConfig.java | 3 +
.../utilities/sources/TestJsonKinesisSource.java | 40 ++++++
.../helpers/TestKinesisOffsetGenClient.java | 145 +++++++++++++++++++
pom.xml | 2 +-
16 files changed, 776 insertions(+), 44 deletions(-)
create mode 100644
hudi-client/hudi-flink-client/src/test/java/org/apache/hudi/io/TestFlinkNativeLogAppendHandle.java
create mode 100644
hudi-client/hudi-spark-client/src/test/scala/org/apache/hudi/TestHoodieSparkUtilsPartitionValues.scala
create mode 100644
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/util/TestClientIds.java
create mode 100644
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/spark/sql/hudi/common/TestTypedPartitionValues.scala
create mode 100644
hudi-utilities/src/test/java/org/apache/hudi/utilities/sources/helpers/TestKinesisOffsetGenClient.java