-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathparameters.json
More file actions
72 lines (72 loc) · 1.62 KB
/
parameters.json
File metadata and controls
72 lines (72 loc) · 1.62 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"availability_zone": {
"name": "us-east-1a",
"id": "use1-az4"
},
"app_with_codepipeline": false,
"app_with_fsx": false,
"app_with_s3express": false,
"batch": {
"deployment_type": "ALL",
"single_node": {
"maxv_cpus": 50,
"minv_cpus": 0,
"num_queues": 1,
"container_cpu": 8,
"container_memory": 16384,
"container_command": [
"python3",
"main.py"
],
"instance_classes": [
"C6I", "C7A", "C7I", "R5", "R5A", "R5B", "R5D", "R5N", "R6A", "R6I", "R7I"
],
"allocation_strategy": "BEST_FIT_PROGRESSIVE",
"spot": false
},
"multi_node": {
"maxv_cpus": 100,
"minv_cpus": 0,
"main": {
"start_node_index": 0,
"end_node_index": 0,
"container_cpu": 32,
"container_gpu": 4,
"container_memory": 65536,
"container_command": [
"python3",
"main.py"
]
},
"worker": {
"start_node_index": 1,
"end_node_index": 2,
"container_cpu": 32,
"container_gpu": 4,
"container_memory": 65536,
"container_command": [
"python3",
"main.py"
]
},
"instance_classes": [
"G5",
"C5"
],
"allocation_strategy": "BEST_FIT_PROGRESSIVE",
"spot": true
}
},
"fsx": {
"per_unit_storage_throughput": 200,
"storage_capacity_gib": 1200,
"deployment_type": "SCRATCH_2"
},
"s3": {
"object_expiration_in_days": 1,
"custom_arns": [
"arn:aws:s3:::amzn-s3-demo-bucket/",
"arn:aws:s3:::amzn-s3-demo-bucket1/"
]
}
}