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 7e6c79203f3e chore(trino): advance trino master pin to 276b5ee81984
add 842e84e4d4fe test(variant): pin Spark 3.x schema-on-read rejection of
variant tables (#19691)
add 739ab7696979 fix(spark): make slash-separated date partitioning work
on the row writer path (#19648)
add 8adb095386e3 chore(api): declare the unstructured ingestion SPIs
evolving (#19701)
add 81fd4992b8dc fix(flink): prevent reusing diverged buffers on memory
exhaustion (#19692)
add e0fe585bbd4c fix(hive-sync): call Driver.destroy() so HiveQL sync
stops leaking Drivers into ShutdownHookManager (#19718)
new a4db03a5a5bb chore(trino): advance trino master pin to 8fbf2737d4c4
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 (7e6c79203f3e)
\
N -- N -- N refs/heads/bot/trino-pin (a4db03a5a5bb)
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:
azure-pipelines-20230430.yml | 1 +
.../java/org/apache/hudi/keygen/KeyGenUtils.java | 74 ++++-
.../hudi/keygen/PartitionPathFormatterBase.java | 72 ++++-
.../hudi/keygen/StringPartitionPathFormatter.java | 10 +
.../keygen/UTF8StringPartitionPathFormatter.java | 28 ++
.../sql/avro/HoodieSparkSchemaConverters.scala | 1 -
.../hudi/keygen/TestComplexKeyGenerator.java | 18 ++
.../apache/hudi/keygen/TestCustomKeyGenerator.java | 15 +-
.../hudi/keygen/TestPartitionPathFormatter.java | 135 +++++++++
.../apache/hudi/keygen/TestSimpleKeyGenerator.java | 77 ++++++
.../resources/variant_backward_compat/README.md | 39 +++
.../variant_schema_on_read_cow.zip | Bin 0 -> 105946 bytes
.../org/apache/hudi/sink/StreamWriteFunction.java | 178 +++++++++---
.../org/apache/hudi/sink/buffer/RowDataBucket.java | 10 +
.../TestBucketStreamWriteMemoryExhaustion.java | 243 ++++++++++++++++
.../apache/hudi/sink/buffer/TestRowDataBucket.java | 102 +++++++
.../scala/org/apache/hudi/HoodieWriterUtils.scala | 28 ++
.../sql/catalyst/catalog/HoodieCatalogTable.scala | 13 +
.../org/apache/hudi/TestHoodieWriterUtils.java | 32 +++
.../hudi/TestSparkSqlHudiPackageStructure.java | 221 ++++++++++++++-
.../common/TestSlashSeparatedPartitionValue.scala | 304 +++++++++++++++------
.../sql/hudi/dml/schema/TestVariantDataType.scala | 102 +++++++
.../apache/hudi/hive/ddl/HiveQueryDDLExecutor.java | 29 +-
.../org/apache/hudi/hive/util/HiveDriverPool.java | 10 +
.../apache/hudi/hive/util/TestHiveDriverPool.java | 50 ++++
.../helpers/unstructured/DocumentParser.java | 6 +
.../transform/embedding/EmbeddingProvider.java | 6 +
pom.xml | 2 +-
28 files changed, 1667 insertions(+), 139 deletions(-)
create mode 100644
hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/keygen/TestPartitionPathFormatter.java
create mode 100644
hudi-common/src/test/resources/variant_backward_compat/variant_schema_on_read_cow.zip
create mode 100644
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/sink/bucket/TestBucketStreamWriteMemoryExhaustion.java
create mode 100644
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/sink/buffer/TestRowDataBucket.java