Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aws
GitHub Repository: aws/aws-cli
Path: blob/develop/tests/unit/customizations/emr/input_instance_fleets.json
1569 views
1
[
2
{
3
"Name": "master-fleet",
4
"InstanceFleetType": "MASTER",
5
"TargetSpotCapacity": 1,
6
"LaunchSpecifications": {
7
"SpotSpecification": {
8
"TimeoutDurationMinutes": 20,
9
"TimeoutAction": "TERMINATE_CLUSTER"
10
}
11
},
12
"InstanceTypeConfigs": [
13
{
14
"InstanceType": "m3.xlarge",
15
"BidPrice": "1",
16
"EbsConfiguration": {
17
"EbsOptimized": true,
18
"EbsBlockDeviceConfigs": [
19
{
20
"VolumeSpecification": {
21
"VolumeType": "gp2",
22
"SizeInGB": 100
23
},
24
"VolumesPerInstance": 2
25
}
26
]
27
}
28
}
29
]
30
},
31
{
32
"Name": "core-fleet",
33
"InstanceFleetType": "CORE",
34
"TargetSpotCapacity": 10,
35
"LaunchSpecifications": {
36
"SpotSpecification": {
37
"TimeoutDurationMinutes": 20,
38
"TimeoutAction": "TERMINATE_CLUSTER"
39
}
40
},
41
"InstanceTypeConfigs": [
42
{
43
"InstanceType": "m3.xlarge",
44
"WeightedCapacity": 1,
45
"BidPrice": "1",
46
"EbsConfiguration": {
47
"EbsOptimized": true,
48
"EbsBlockDeviceConfigs": [
49
{
50
"VolumeSpecification": {
51
"VolumeType": "gp2",
52
"SizeInGB": 100
53
},
54
"VolumesPerInstance": 2
55
}
56
]
57
}
58
},
59
{
60
"InstanceType": "m3.large",
61
"WeightedCapacity": 2,
62
"BidPrice": "1",
63
"EbsConfiguration": {
64
"EbsOptimized": false,
65
"EbsBlockDeviceConfigs": [
66
{
67
"VolumeSpecification": {
68
"VolumeType": "gp2",
69
"SizeInGB": 100
70
},
71
"VolumesPerInstance": 2
72
},
73
{
74
"VolumeSpecification": {
75
"VolumeType": "gp2",
76
"SizeInGB": 500
77
},
78
"VolumesPerInstance": 1
79
}
80
]
81
}
82
}
83
]
84
}
85
]
86
87