Most entrypoint.sh files that are used to run the spark docker image contains a variable called SPARK_DRIVER_BIND_ADDRESS, for example this entrypoint.sh
I'm not able to find what this property is used for, and how to get it's value ?
Most entrypoint.sh files that are used to run the spark docker image contains a variable called SPARK_DRIVER_BIND_ADDRESS, for example this entrypoint.sh
I'm not able to find what this property is used for, and how to get it's value ?
You can find on the official Spark documentation what it is, quote:
https://spark.apache.org/docs/latest/configuration.html
So I suppose you have to pass an environment variable something like
SPARK_DRIVER_BIND_ADDRESS=0.0.0.0
into a container to get it started without errors.