-
Notifications
You must be signed in to change notification settings - Fork 0
/
emr_default.json
46 lines (46 loc) · 999 Bytes
/
emr_default.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"Name": "spark-emr-cluster",
"LogUri": "s3://emr-logs-anupam",
"ReleaseLabel": "emr-5.28.0",
"Applications": [
{
"Name": "Spark"
}
],
"Configurations": [
{
"Classification": "spark-env",
"Configurations": [
{
"Classification": "export",
"Properties": {
"PYSPARK_PYTHON": "/usr/bin/python3"
}
}
]
}
],
"Instances": {
"InstanceGroups": [
{
"Name": "Master nodes",
"Market": "ON_DEMAND",
"InstanceRole": "MASTER",
"InstanceType": "m4.large",
"InstanceCount": 1
},
{
"Name": "Slave nodes",
"Market": "ON_DEMAND",
"InstanceRole": "CORE",
"InstanceType": "m4.large",
"InstanceCount": 4
}
],
"KeepJobFlowAliveWhenNoSteps": false,
"TerminationProtected": false
},
"VisibleToAllUsers": true,
"JobFlowRole": "EMR_EC2_DefaultRole",
"ServiceRole": "EMR_DefaultRole"
}