How to set a custom environment variable in EMR to be available for a spark Application

后端 未结 3 1094
南笙
南笙 2021-01-17 12:21

I need to set a custom environment variable in EMR to be available when running a spark application.

I have tried adding this:

                   .         


        
3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-17 12:49

    Use classification yarn-env to pass environment variables to the worker nodes.

    Use classification spark-env to pass environment variables to the driver, with deploy mode client. When using deploy mode cluster, use yarn-env.

提交回复
热议问题