-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.json
53 lines (53 loc) · 1.38 KB
/
config.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
47
48
49
50
51
52
53
{
"stack-id": "scene-detection",
"fargate": {
"image-name": "ros-image",
"ecr-repository-name": "ros-topic-extraction",
"glue-db-name": "vsidata",
"cpu": 4096,
"memory-limit-mib": 30720,
"timeout-minutes": 30,
"s3-filters": {
"prefix": [],
"suffix": [
".bag"
]
},
"input-bucket-name": "rosbag-ingest",
"output-bucket-name": "rosbag-topics",
"environment-variables": {
"s3_source_prefix": "$.key"
},
"topics-to-extract": [
"/as_tx/objects",
"/gps",
"/imu_raw",
"/rgb_right_detections_only",
"/rgb_left_detections_only",
"/thermal_detections_only",
"/post_process/lane_points/rgb_front_left",
"/post_process/lane_points/rgb_front_right",
"/vehicle/steering_report"
]
},
"emr": {
"CLUSTER_NAME": "scene-detection-emr",
"MASTER_INSTANCE_TYPE": "m5.xlarge",
"CORE_INSTANCE_TYPE": "m5.4xlarge",
"CORE_INSTANCE_COUNT": 3,
"CORE_INSTANCE_MARKET": "ON_DEMAND",
"TASK_INSTANCE_TYPE": "m5.4xlarge",
"TASK_INSTANCE_COUNT": 1,
"TASK_INSTANCE_MARKET": "SPOT",
"RELEASE_LABEL": "emr-6.2.0",
"APPLICATIONS": ["Hadoop", "Spark"],
"CONFIGURATION": [
{
"Classification": "spark",
"Properties": {
"maximizeResourceAllocation": "true"
}
}
]
}
}