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
NoSuchElementException occurs in org.apache.spark.CometDriverPlugin.init(Plugins.scala:56).
java.util.NoSuchElementException: spark.executor.memory at org.apache.spark.SparkConf.$anonfun$get$1(SparkConf.scala:245) at scala.Option.getOrElse(Option.scala:189) at org.apache.spark.SparkConf.get(SparkConf.scala:245) at org.apache.spark.SparkConf.$anonfun$getSizeAsMb$1(SparkConf.scala:355) at scala.runtime.java8.JFunction0$mcJ$sp.apply(JFunction0$mcJ$sp.java:23) at org.apache.spark.SparkConf.catchIllegalValue(SparkConf.scala:482) at org.apache.spark.SparkConf.getSizeAsMb(SparkConf.scala:355) at org.apache.spark.CometDriverPlugin.init(Plugins.scala:56) at org.apache.spark.internal.plugin.DriverPluginContainer.$anonfun$driverPlugins$1(PluginContainer.scala:53) at scala.collection.TraversableLike.$anonfun$flatMap$1(TraversableLike.scala:293) at scala.collection.mutable.ResizableArray.foreach(ResizableArray.scala:62) at scala.collection.mutable.ResizableArray.foreach$(ResizableArray.scala:55) at scala.collection.mutable.ArrayBuffer.foreach(ArrayBuffer.scala:49) at scala.collection.TraversableLike.flatMap(TraversableLike.scala:293) at scala.collection.TraversableLike.flatMap$(TraversableLike.scala:290) at scala.collection.AbstractTraversable.flatMap(Traversable.scala:108) at org.apache.spark.internal.plugin.DriverPluginContainer.<init>(PluginContainer.scala:46) at org.apache.spark.internal.plugin.PluginContainer$.apply(PluginContainer.scala:210) at org.apache.spark.internal.plugin.PluginContainer$.apply(PluginContainer.scala:193) at org.apache.spark.SparkContext.<init>(SparkContext.scala:574) at org.apache.spark.api.java.JavaSparkContext.<init>(JavaSparkContext.scala:58) at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) at py4j.reflection.MethodInvoker.invoke(MethodInvoker.java:247) at py4j.reflection.ReflectionEngine.invoke(ReflectionEngine.java:374) at py4j.Gateway.invoke(Gateway.java:238) at py4j.commands.ConstructorCommand.invokeConstructor(ConstructorCommand.java:80) at py4j.commands.ConstructorCommand.execute(ConstructorCommand.java:69) at py4j.ClientServerConnection.waitForCommands(ClientServerConnection.java:182) at py4j.ClientServerConnection.run(ClientServerConnection.java:106) at java.base/java.lang.Thread.run(Thread.java:829)
Steps to reproduce
Prerequisites
Ubuntu 20.04.6 LTS
openjdk-11-jdk-headless
Apache Spark 3.5.3 (Pre-built for Apache Hadoop 3.3 and later)
How to reproduce the bug
Build datafusion-comet from scratch.
$ git clone https://github.com/apache/datafusion-comet.git
$ cd datafusion-comet
$ make release PROFILES="-Pspark-3.5"
Use datafusion-benchmarks with tpch (scale factor=1) without specifying --conf spark.executor.memory=<size> for producing the bug.
When I specify --conf spark.executor.memory=<size> explicitly, the error does not occur.
I guess the default value of spark.executor.memory is not defined when org.apache.spark.CometDriverPlugin.init(Plugins.scala:56) is called.
So, we should provide a default value for spark.executor.memory when calling org.apache.spark.SparkConf.getSizeAsMb(SparkConf.scala:355), or check whether or not the spark.executor.memory is contained in the conf, then only when it is set, we call org.apache.spark.SparkConf.getSizeAsMb(SparkConf.scala:355).
Expected behavior
TPCH completes successfully.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
NoSuchElementException occurs in org.apache.spark.CometDriverPlugin.init(Plugins.scala:56).
Steps to reproduce
Prerequisites
How to reproduce the bug
Build
datafusion-comet
from scratch.Use
datafusion-benchmarks
with tpch (scale factor=1) without specifying--conf spark.executor.memory=<size>
for producing the bug.When I specify
--conf spark.executor.memory=<size>
explicitly, the error does not occur.I guess the default value of
spark.executor.memory
is not defined whenorg.apache.spark.CometDriverPlugin.init(Plugins.scala:56)
is called.So, we should provide a default value for
spark.executor.memory
when callingorg.apache.spark.SparkConf.getSizeAsMb(SparkConf.scala:355)
, or check whether or not thespark.executor.memory
is contained in the conf, then only when it is set, we callorg.apache.spark.SparkConf.getSizeAsMb(SparkConf.scala:355)
.Expected behavior
TPCH completes successfully.
Additional context
No response
The text was updated successfully, but these errors were encountered: