Zambonilli
Zambonilli

Reputation: 4591

How do I set multiple --conf table parameters in AWS Glue?

Multiple Answers on stackoverflow for AWS Glue say to set the --conf table parameter. However, sometimes in a job we'll need to set multiple --conf key value pairs in 1 job.

I've tried the following ways to have multiple --conf values set all resulting in error:

How do I set multiple --conf table parameters in AWS Glue?

Upvotes: 18

Views: 11531

Answers (1)

Nihir
Nihir

Reputation: 586

You can pass multiple parameters as below:

Key: --conf

value: spark.yarn.executor.memoryOverhead=7g --conf spark.yarn.executor.memory=7g

This has worked for me.

Upvotes: 30

Related Questions