This is an automated email from the ASF dual-hosted git repository.
agrove pushed a change to branch fix/spark-343-filter-pushdown-tag
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
omit d8948a65c fix: link accumulator-related IgnoreCometNativeScan tests to
#3867
omit 028e5f923 fix: use IgnoreCometNativeScan for StringPredicate test in
3.4.3 diff
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)
new c0be21386 fix: link accumulator-related IgnoreCometNativeScan tests to
#3867
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 (d8948a65c)
\
N -- N -- N refs/heads/fix/spark-343-filter-pushdown-tag
(c0be21386)
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:
...{pr_missing_suites.yml => label_new_issues.yml} | 23 +-
.github/workflows/pr_build_linux.yml | 2 +-
.../main/scala/org/apache/comet/CometConf.scala | 14 +
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/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 | 7 -
native/Cargo.lock | 1 +
native/core/src/execution/planner.rs | 18 +-
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/proto/src/proto/expr.proto | 4 +
native/shuffle/Cargo.toml | 1 +
native/shuffle/src/lib.rs | 1 +
native/shuffle/src/partitioners/multi_partition.rs | 6 +-
native/shuffle/src/spark_crc32c_hasher.rs | 84 ++++
native/shuffle/src/writers/checksum.rs | 77 +++-
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 +-
native/spark-expr/src/math_funcs/log.rs | 227 +++++++++++
native/spark-expr/src/math_funcs/mod.rs | 2 +
.../sql/comet/execution/shuffle/SpillWriter.java | 4 +-
.../org/apache/comet/CometMetricsListener.scala} | 21 +-
.../org/apache/comet/ExtendedExplainInfo.scala | 19 +
.../org/apache/comet/rules/CometScanRule.scala | 16 -
.../org/apache/comet/serde/QueryPlanSerde.scala | 17 +-
.../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 +-
.../org/apache/spark/sql/comet/operators.scala | 6 -
.../expressions/aggregate/aggregate_filter.sql | 86 +++++
.../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/CometSqlFileTestSuite.scala | 2 +-
.../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 +
54 files changed, 2012 insertions(+), 580 deletions(-)
copy .github/workflows/{pr_missing_suites.yml => label_new_issues.yml} (65%)
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/spark_crc32c_hasher.rs
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]