You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
revert: default JVM UDF codegen dispatcher back to disabled
Flip spark.comet.exec.scalaUDF.codegen.enabled back to false and restore
the experimental, disabled-by-default language across the regex/codegen
docs and CometConf strings. With this default, the regex family (java
engine path) and the DateFormat dispatcher fall back to Spark unless the
user explicitly opts in.
This keeps the engine=rust JVM-dispatcher fallthrough behavior introduced
separately on this branch; only the codegen-enabled-by-default change is
reverted.
This page covers Spark's `ScalaUDF` (Scala `udf(...)`, `spark.udf.register(...)` over Scala or Java functional interfaces, and SQL `CREATE FUNCTION ... AS 'com.example.MyUDF'`). Other UDF kinds (Python / Pandas, Hive, aggregate) are out of scope and continue to fall back to Spark.
25
25
26
+
This feature is experimental and disabled by default.
|`spark.comet.exec.scalaUDF.codegen.enabled`|`true`| When `true`, eligible `ScalaUDF`s run on the Comet path. When `false`, the enclosing operator falls back to Spark. |
32
+
|`spark.comet.exec.scalaUDF.codegen.enabled`|`false`| When `true`, eligible `ScalaUDF`s run on the Comet path. When `false`, the enclosing operator falls back to Spark. |
0 commit comments