LoginSignup
2
1

More than 5 years have passed since last update.

Spark on YARNで環境変数を使いたい

Posted at

概要

Sparkアプリでも環境変数を使いたい場合があったのでやり方をまとめておく。

やりかた

調べた感じ、DriverとExecutorとで渡し方が違うようです。

具体的な指定方法としては、

spark-submit <他の設定とか> \
--conf spark.yarn.appMasterEnv.AWS_ACCESS_KEY_ID="HOGE" \
--conf spark.executorEnv.AWS_ACCESS_KEY_ID="HOGE" \
<実行するJarとか引数とか>

という感じです。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1