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
At the moment, all configuration is read from the SparkConf, and keys are expected to have the spark. prefix that's required by spark-submit (but not SparkConf itself). In similar libraries elsewhere, it's often supported to read from multiple configuration sources, e.g.:
Look for spark.com.xebia.data.spot.some-key in SparkConf.
Look for com.xebia.data.spot.some-key in SparkConf.
Look for spot.some-key in JVM System Properties.
Look for SPOT_SOME_KEY in OS environment variables.
These should be tried in a documented sequence, with a documented conflict-resolution (such as first hit wins, or perhaps env-var as override).
The text was updated successfully, but these errors were encountered:
At the moment, all configuration is read from the
SparkConf
, and keys are expected to have thespark.
prefix that's required by spark-submit (but notSparkConf
itself). In similar libraries elsewhere, it's often supported to read from multiple configuration sources, e.g.:spark.com.xebia.data.spot.some-key
inSparkConf
.com.xebia.data.spot.some-key
inSparkConf
.spot.some-key
in JVM System Properties.SPOT_SOME_KEY
in OS environment variables.These should be tried in a documented sequence, with a documented conflict-resolution (such as first hit wins, or perhaps env-var as override).
The text was updated successfully, but these errors were encountered: