Setting Up an HTTP Proxy for Spark 2
If you are using an HTTP proxy, you must set the Spark configuration
parameter extraJavaOptions
at runtime to be able to
support web-related actions in Spark.
spark.driver.extraJavaOptions= \
-Dhttp.proxyHost=<YOUR HTTP PROXY HOST> \
-Dhttp.proxyPort=<HTTP PORT> \
-Dhttps.proxyHost=<YOUR HTTPS PROXY HOST> \
-Dhttps.proxyPort=<HTTPS PORT>