andygrove commented on issue #886:
URL: 
https://github.com/apache/datafusion-comet/issues/886#issuecomment-2452416782

   I could not reproduce this issue in k8s either. Here is the spark-submit 
command that I used.
   
   ```
   $SPARK_HOME/bin/spark-submit \
       --master $SPARK_MASTER \
       --conf spark.driver.memory=8G \
       --conf spark.executor.instances=4 \
       --conf spark.executor.memory=30719m \
       --conf spark.executor.memoryOverheadFactor=0.6 \
       --conf spark.comet.memory.overhead.factor=0.04 \
       --conf spark.executor.cores=6 \
       --conf spark.sql.extensions=org.apache.comet.CometSparkSessionExtensions 
\
       --conf 
spark.shuffle.manager=org.apache.spark.sql.comet.execution.shuffle.CometShuffleManager
 \
       --conf spark.comet.exec.enabled=true \
       --conf spark.comet.exec.all.enabled=true \
       --conf spark.comet.exec.shuffle.enabled=true \
       --deploy-mode cluster \
       --jars $COMET_JAR \
       --conf spark.driver.extraClassPath=$COMET_JAR \
       --conf spark.executor.extraClassPath=$COMET_JAR \
       --conf spark.kubernetes.container.image.pullPolicy=Always \
       --conf spark.kubernetes.authenticate.driver.serviceAccountName=spark \
       --conf spark.kubernetes.driver.container.image=$COMET_IMAGE \
       --conf 
spark.kubernetes.driver.volumes.persistentVolumeClaim.benchmark-results-pv.options.claimName=benchmark-results-pvc
 \
       --conf 
spark.kubernetes.driver.volumes.persistentVolumeClaim.benchmark-results-pv.mount.path=/mnt/benchmark-results
 \
       --conf 
spark.kubernetes.driver.volumes.persistentVolumeClaim.benchmark-results-pv.mount.readOnly=false
 \
       --conf 
spark.kubernetes.driver.volumes.hostPath.data.mount.path=/mnt/bigdata \
       --conf 
spark.kubernetes.driver.volumes.hostPath.data.options.path=/mnt/bigdata \
       --conf 
spark.kubernetes.driver.volumes.hostPath.data.options.readOnly=false \
       --conf spark.kubernetes.executor.container.image=$COMET_IMAGE \
       --conf 
spark.kubernetes.executor.volumes.hostPath.data.mount.path=/mnt/bigdata \
       --conf 
spark.kubernetes.executor.volumes.hostPath.data.options.path=/mnt/bigdata \
       --conf spark.eventLog.enabled=false \
       local:///tpcbench.py \
       --name comet \
       --benchmark tpch \
       --data /mnt/bigdata/tpch/sf1000/ \
       --queries /tpch \
       --output /mnt/benchmark-results \
       --iterations 1
   ```
   
   @Kontinuation Do you have any suggestions for how I can reproduce this issue?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to