-
Error:
Command Used: pyspark --packages za.co.absa.spline.agent.spark:spark-3.1-spline-agent-bundle_2.12:0.7.1 \
--conf "spark.sql.queryExecutionListeners=za.co.absa.spline.harvester.listener.SplineQueryExecutionListener" \
--conf "spline.lineageDispatcher=console" \
--conf "spline.lineageDispatcher.console.className=za.co.absa.spline.harvester.dispatcher.ConsoleLineageDispatcher" \
--conf "spline.lineageDispatcher.console.stream=OUT" What am I missing? |
Beta Was this translation helpful? Give feedback.
Answered by
wajda
May 4, 2022
Replies: 1 comment 3 replies
-
Spark ignores config keys that don't start with pyspark --packages za.co.absa.spline.agent.spark:spark-3.1-spline-agent-bundle_2.12:0.7.1 \
--conf "spark.sql.queryExecutionListeners=za.co.absa.spline.harvester.listener.SplineQueryExecutionListener" \
--conf "spark.spline.lineageDispatcher=console" \
--conf "spark.spline.lineageDispatcher.console.className=za.co.absa.spline.harvester.dispatcher.ConsoleLineageDispatcher" \
--conf "spark.spline.lineageDispatcher.console.stream=OUT" |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
nkarthikn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Spark ignores config keys that don't start with
spark.
Hence, when setting Spline properties via Spark configuration all keys have to be prepended with thespark.
prefix to be properly propagated to the Spline agent.