This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/native/main/jni-0.22.4
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
discard a4083c94b chore(deps): bump jni from 0.21.1 to 0.22.4 in /native
add c3dd3a4c2 fix: handle scalar decimal value overflow correctly in ANSI
mode (#3803)
add 4edd904ee refactor: reorganize shuffle crate module structure (#3772)
add 77bd8e070 fix: correct array_append return type and mark as Compatible
(#3795)
add 7a874616e docs: document negative zero cast-to-string incompatibility
(#3811)
add 6aa577b34 docs: Add docs about global singletons to development guide
(#3809)
add 5ff07886f fix: remove broken directBuffer feature for parquet reads
(#3814)
add 64edcc30e chore: update git plugin to allow worktrees (#3815)
add d7a228c4b chore: Remove `SupportsComet` interface (#3818)
add bef775999 feat: expose comet metrics through Sparks external
monitoring system (#3708)
add 67f8da19f fix: remove unnecessary IgnoreCometNativeDataFusion tags
from 3.5.8 diff (#3831)
add 75a833d64 docs: add bug triage guide for prioritizing open issues
(#3812)
add 5080b0da0 docs: broaden area:writer and area:scan label descriptions
(#3843)
add e5e452a2e feat: support SQL aggregate FILTER (WHERE ...) clause in
native execution (#3835)
add 295054013 fix: query tolerance= in SQL file tests now also asserts
Comet native execution (#3797)
add b6fd7872a Replace catalyst.util.fileToString with Files.readString
(#3844)
add 28bd4bc79 feat: Implement CRC32C algorithm (#3822)
add 7a7a9881c fix: include scan impl in PR Linux artifact names (#3853)
add f210412de test: cast negative zero to string (#3829)
add 3c154ca8f fix: correct invalid Option.contains assertion in cast test
(#3851)
add c97f0338d fix: native_datafusion: case-insensitive mode doesn't detect
duplicate/ambiguous Parquet fields (#3808)
add 7878f0d01 fix: cache object stores and bucket regions to reduce DNS
query volume (#3802)
add d93747967 perf: remove BufReader wrapper when copying spill files to
shuffle output (#3861)
add 012d5b46c test: add SQL file test for casting double to string (#3854)
add ba6b3ce21 docs: expand profiling guide with JVM and async-profiler
coverage (#3628)
add 3c927dde6 doc: GetArrayItem is now supported (#3880)
add acbdeac79 fix: skip Comet columnar shuffle for stages with DPP scans
(#3879)
add c3f59a65c chore(deps): bump jni from 0.21.1 to 0.22.4 in /native
(#3753)
add 6903a32f2 chore(deps): bump jni from 0.21.1 to 0.22.4 in /native
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 (a4083c94b)
\
N -- N -- N refs/heads/dependabot/cargo/native/main/jni-0.22.4
(6903a32f2)
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.
No new revisions were added by this update.
Summary of changes:
...{pr_missing_suites.yml => label_new_issues.yml} | 23 +-
.github/workflows/pr_build_linux.yml | 2 +-
.../org/apache/comet/parquet/ColumnReader.java | 16 +-
.../main/java/org/apache/comet/parquet/Native.java | 12 -
.../org/apache/comet/parquet/SupportsComet.java | 25 --
.../main/scala/org/apache/comet/CometConf.scala | 21 +-
dev/diffs/3.4.3.diff | 100 +++--
dev/diffs/3.5.8.diff | 421 +++++----------------
dev/diffs/4.0.1.diff | 117 ++++--
dev/ensure-jars-have-correct-contents.sh | 1 +
docs/source/contributor-guide/bug_triage.md | 163 ++++++++
docs/source/contributor-guide/development.md | 68 ++++
docs/source/contributor-guide/index.md | 3 +-
docs/source/contributor-guide/parquet_scans.md | 6 +-
docs/source/contributor-guide/profiling.md | 296 +++++++++++++++
.../contributor-guide/profiling_native_code.md | 94 -----
docs/source/user-guide/latest/compatibility.md | 4 -
docs/source/user-guide/latest/expressions.md | 4 +-
native/Cargo.lock | 15 +-
native/core/Cargo.toml | 4 +-
native/core/src/execution/expressions/subquery.rs | 46 +--
native/core/src/execution/jni_api.rs | 150 ++++----
.../core/src/execution/memory_pools/fair_pool.rs | 20 +-
native/core/src/execution/memory_pools/mod.rs | 4 +-
.../src/execution/memory_pools/unified_pool.rs | 20 +-
native/core/src/execution/metrics/utils.rs | 4 +-
native/core/src/execution/operators/projection.rs | 4 +-
native/core/src/execution/operators/scan.rs | 178 +++++----
.../core/src/execution/operators/shuffle_scan.rs | 99 +++--
native/core/src/execution/planner.rs | 24 +-
.../src/execution/planner/operator_registry.rs | 6 +-
native/core/src/lib.rs | 20 +-
native/core/src/parquet/encryption_support.rs | 155 ++++----
native/core/src/parquet/mod.rs | 166 +++-----
native/core/src/parquet/objectstore/s3.rs | 42 ++
native/core/src/parquet/parquet_support.rs | 99 ++++-
native/core/src/parquet/schema_adapter.rs | 114 +++++-
native/core/src/parquet/util/jni.rs | 17 +-
native/jni-bridge/Cargo.toml | 4 +-
native/jni-bridge/src/batch_iterator.rs | 31 +-
native/jni-bridge/src/comet_exec.rs | 73 +++-
native/jni-bridge/src/comet_metric_node.rs | 28 +-
native/jni-bridge/src/comet_task_memory_manager.rs | 19 +-
native/jni-bridge/src/errors.rs | 406 +++++++++++---------
native/jni-bridge/src/lib.rs | 110 ++++--
native/jni-bridge/src/shuffle_block_iterator.rs | 25 +-
native/proto/src/proto/expr.proto | 4 +
native/shuffle/Cargo.toml | 1 +
native/shuffle/benches/row_columnar.rs | 5 +-
native/shuffle/src/comet_partitioning.rs | 1 +
native/shuffle/src/ipc.rs | 52 +++
native/shuffle/src/lib.rs | 6 +-
native/shuffle/src/metrics.rs | 1 +
native/shuffle/src/partitioners/mod.rs | 13 +-
native/shuffle/src/partitioners/multi_partition.rs | 7 +-
.../src/partitioners/partitioned_batch_iterator.rs | 1 +
.../shuffle/src/partitioners/{mod.rs => traits.rs} | 8 -
native/shuffle/src/spark_crc32c_hasher.rs | 84 ++++
native/shuffle/src/spark_unsafe/list.rs | 7 +-
native/shuffle/src/spark_unsafe/map.rs | 1 +
native/shuffle/src/spark_unsafe/mod.rs | 1 +
native/shuffle/src/spark_unsafe/row.rs | 214 +----------
native/shuffle/src/spark_unsafe/unsafe_object.rs | 224 +++++++++++
native/shuffle/src/writers/buf_batch_writer.rs | 2 +-
native/shuffle/src/writers/checksum.rs | 150 ++++++++
native/shuffle/src/writers/mod.rs | 8 +-
.../{codec.rs => writers/shuffle_block_writer.rs} | 97 +----
.../src/writers/{partition_writer.rs => spill.rs} | 4 +-
native/spark-expr/src/agg_funcs/avg.rs | 9 +-
native/spark-expr/src/agg_funcs/avg_decimal.rs | 9 +-
native/spark-expr/src/agg_funcs/sum_decimal.rs | 65 +++-
native/spark-expr/src/agg_funcs/sum_int.rs | 146 ++++++-
native/spark-expr/src/comet_scalar_funcs.rs | 5 +
native/spark-expr/src/lib.rs | 4 +-
.../src/math_funcs/internal/checkoverflow.rs | 183 ++++++++-
native/spark-expr/src/math_funcs/log.rs | 227 +++++++++++
native/spark-expr/src/math_funcs/mod.rs | 2 +
pom.xml | 2 +-
.../sql/comet/execution/shuffle/SpillWriter.java | 4 +-
.../org/apache/comet/CometMetricsListener.scala} | 21 +-
.../org/apache/comet/ExtendedExplainInfo.scala | 19 +
.../org/apache/comet/expressions/CometCast.scala | 1 +
.../comet/parquet/CometParquetFileFormat.scala | 3 -
.../org/apache/comet/rules/CometExecRule.scala | 2 +-
.../org/apache/comet/rules/CometScanRule.scala | 49 +--
.../org/apache/comet/serde/QueryPlanSerde.scala | 17 +-
.../main/scala/org/apache/comet/serde/arrays.scala | 20 +-
.../main/scala/org/apache/comet/serde/math.scala | 19 +-
.../main/scala/org/apache/spark/CometSource.scala | 62 +++
.../src/main/scala/org/apache/spark/Plugins.scala | 31 +-
.../shuffle/CometShuffleExchangeExec.scala | 23 +-
.../org/apache/spark/sql/comet/operators.scala | 6 -
.../expressions/aggregate/aggregate_filter.sql | 86 +++++
.../sql-tests/expressions/array/array_append.sql | 3 +-
.../is_null.sql => cast/cast_double_to_string.sql} | 22 +-
.../resources/sql-tests/expressions/math/log.sql | 10 +-
.../resources/sql-tests/expressions/math/log10.sql | 2 +-
.../resources/sql-tests/expressions/math/log2.sql | 2 +-
.../resources/sql-tests/expressions/math/tan.sql | 1 +
.../scala/org/apache/comet/CometCastSuite.scala | 14 +-
.../org/apache/comet/CometExpressionSuite.scala | 29 ++
.../org/apache/comet/CometSqlFileTestSuite.scala | 2 +-
.../org/apache/comet/exec/CometExecSuite.scala | 38 +-
.../apache/comet/exec/CometNativeReaderSuite.scala | 36 ++
.../scala/org/apache/spark/CometPluginsSuite.scala | 42 +-
.../spark/sql/CometTPCDSQueryTestSuite.scala | 4 +-
.../org/apache/spark/sql/CometTPCHQuerySuite.scala | 4 +-
.../scala/org/apache/spark/sql/CometTestBase.scala | 11 +
108 files changed, 3594 insertions(+), 1791 deletions(-)
copy .github/workflows/{pr_missing_suites.yml => label_new_issues.yml} (65%)
delete mode 100644
common/src/main/java/org/apache/comet/parquet/SupportsComet.java
create mode 100644 docs/source/contributor-guide/bug_triage.md
create mode 100644 docs/source/contributor-guide/profiling.md
delete mode 100644 docs/source/contributor-guide/profiling_native_code.md
create mode 100644 native/shuffle/src/ipc.rs
copy native/shuffle/src/partitioners/{mod.rs => traits.rs} (80%)
create mode 100644 native/shuffle/src/spark_crc32c_hasher.rs
create mode 100644 native/shuffle/src/spark_unsafe/unsafe_object.rs
create mode 100644 native/shuffle/src/writers/checksum.rs
rename native/shuffle/src/{codec.rs => writers/shuffle_block_writer.rs} (60%)
rename native/shuffle/src/writers/{partition_writer.rs => spill.rs} (95%)
create mode 100644 native/spark-expr/src/math_funcs/log.rs
copy
spark/src/main/{spark-4.0/org/apache/comet/shims/ShimCometSparkSessionExtensions.scala
=> scala/org/apache/comet/CometMetricsListener.scala} (57%)
create mode 100644 spark/src/main/scala/org/apache/spark/CometSource.scala
create mode 100644
spark/src/test/resources/sql-tests/expressions/aggregate/aggregate_filter.sql
copy spark/src/test/resources/sql-tests/expressions/{conditional/is_null.sql
=> cast/cast_double_to_string.sql} (64%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]