This is an automated email from the ASF dual-hosted git repository.
yihua pushed a change to branch dependabot/cargo/pyo3-0.29
in repository https://gitbox.apache.org/repos/asf/hudi-rs.git
from 4043d8b0 build(deps): update pyo3 requirement from 0.28 to 0.29
add b86c9be5 feat(benchmark): add AWS EC2 setup for the TPC-H harness
(#718)
add 4e99a136 fix(benchmark): stop the parquet run overwriting the Hudi
benchmark results (#747)
add 3a031458 fix(core): decline base-read pushdown when a predicate reads
a repaired column (#748)
add 593ed83a build(release): bump version to 0.6.0-dev (#749)
add 7d130d81 fix(ci): install a modern protoc for the manylinux wheel
build (#751)
add ddb72748 fix(release): reject an expired signing key in the src
release verification (#753)
add 4325208a fix(ci): publish the release only after every artifact has
built (#755)
add 8408b0da Merge branch 'main' into dependabot/cargo/pyo3-0.29
No new revisions were added by this update.
Summary of changes:
.github/scripts/manylinux-build-deps.sh | 111 ++++
.github/workflows/ci.yml | 43 ++
.github/workflows/release.yml | 152 +++---
Cargo.toml | 2 +-
benchmark/tpch/README.md | 167 ++++++
benchmark/tpch/infra/aws/bootstrap.sh | 120 ++++
benchmark/tpch/infra/aws/sync.sh | 71 +++
benchmark/tpch/infra/gcp/bootstrap.sh | 6 +-
benchmark/tpch/infra/spark/spark-defaults.conf | 3 +
benchmark/tpch/run.sh | 339 ++++++++++--
benchmark/tpch/src/config.rs | 4 +
benchmark/tpch/src/main.rs | 97 +++-
cpp/CMakeLists.txt | 2 +-
cpp/Cargo.toml | 4 +-
crates/core/src/file_group/reader_v2/engine.rs | 603 ++++++++++++++++++++-
.../src/file_group/reader_v2/reader_context.rs | 30 +
crates/core/src/file_group/reader_v2/resolver.rs | 3 +
crates/core/src/schema/batch_evolution.rs | 480 ++++++++++++++++
crates/core/src/storage/mod.rs | 41 +-
crates/datafusion/Cargo.toml | 2 +-
crates/hudi/Cargo.toml | 4 +-
crates/jvm-ffi/Cargo.toml | 2 +-
release/verify_src_release.sh | 12 +-
23 files changed, 2156 insertions(+), 142 deletions(-)
create mode 100755 .github/scripts/manylinux-build-deps.sh
create mode 100755 benchmark/tpch/infra/aws/bootstrap.sh
create mode 100755 benchmark/tpch/infra/aws/sync.sh