主要是spark.driver.extraJavaOptions和spark.executor.extraJavaOptions两个参数
可以写到配置文件里,
spark.driver.extraJavaOptions "-Dhttp.proxyHost=<> -Dhttp.proxyPort=<> -Dhttps.proxyHost=<> -Dhttps.proxyPort=<>"
也可以写到spark-submit后面作为参数,
spark-submit --conf spark.driver.extraJavaOptions="-Dhttp.proxyHost=<> -Dhttp.proxyPort=<> -Dhttps.proxyHost=<> -Dhttps.proxyPort=<>"