-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathemr-sfn-args.json
150 lines (150 loc) · 4.19 KB
/
emr-sfn-args.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"clusterId": "<CLUSTER_ID>",
"sparkArgs": [
[
"spark-submit",
"s3://<S3_BUCKET_NAME>/files/spark-etl.py",
"s3://<S3_BUCKET_NAME>/input",
"s3://<S3_BUCKET_NAME>/output/spark1"
],
[
"spark-submit",
"s3://<S3_BUCKET_NAME>/files/spark-etl.py",
"s3://<S3_BUCKET_NAME>/input",
"s3://<S3_BUCKET_NAME>/output/spark2"
],
[
"spark-submit",
"s3://<S3_BUCKET_NAME>/files/spark-etl.py",
"s3://<S3_BUCKET_NAME>/input",
"s3://<S3_BUCKET_NAME>/output/spark3"
],
[
"spark-submit",
"s3://<S3_BUCKET_NAME>/files/spark-etl.py",
"s3://<S3_BUCKET_NAME>/input",
"s3://<S3_BUCKET_NAME>/output/spark4"
],
[
"spark-submit",
"s3://<S3_BUCKET_NAME>/files/spark-etl.py",
"s3://<S3_BUCKET_NAME>/input",
"s3://<S3_BUCKET_NAME>/output/spark5"
]
],
"hiveArgs": [
[
"hive-script",
"--run-hive-script",
"--args",
"-f",
"s3://<S3_BUCKET_NAME>/files/ny-taxi.hql",
"-d",
"INPUT=s3://<S3_BUCKET_NAME>/input/",
"-d",
"OUTPUT=s3://<S3_BUCKET_NAME>/output/hive1"
],
[
"hive-script",
"--run-hive-script",
"--args",
"-f",
"s3://<S3_BUCKET_NAME>/files/ny-taxi.hql",
"-d",
"INPUT=s3://<S3_BUCKET_NAME>/input/",
"-d",
"OUTPUT=s3://<S3_BUCKET_NAME>/output/hive2"
],
[
"hive-script",
"--run-hive-script",
"--args",
"-f",
"s3://<S3_BUCKET_NAME>/files/ny-taxi.hql",
"-d",
"INPUT=s3://<S3_BUCKET_NAME>/input/",
"-d",
"OUTPUT=s3://<S3_BUCKET_NAME>/output/hive3"
],
[
"hive-script",
"--run-hive-script",
"--args",
"-f",
"s3://<S3_BUCKET_NAME>/files/ny-taxi.hql",
"-d",
"INPUT=s3://<S3_BUCKET_NAME>/input/",
"-d",
"OUTPUT=s3://<S3_BUCKET_NAME>/output/hive4"
],
[
"hive-script",
"--run-hive-script",
"--args",
"-f",
"s3://<S3_BUCKET_NAME>/files/ny-taxi.hql",
"-d",
"INPUT=s3://<S3_BUCKET_NAME>/input/",
"-d",
"OUTPUT=s3://<S3_BUCKET_NAME>/output/hive5"
]
],
"pigArgs": [
[
"pig-script",
"--run-pig-script",
"--args",
"-f",
"s3://<S3_BUCKET_NAME>/files/ny-taxi.pig",
"-p",
"INPUT=s3://<S3_BUCKET_NAME>/input/",
"-p",
"OUTPUT=s3://<S3_BUCKET_NAME>/output/pig1"
],
[
"pig-script",
"--run-pig-script",
"--args",
"-f",
"s3://<S3_BUCKET_NAME>/files/ny-taxi.pig",
"-p",
"INPUT=s3://<S3_BUCKET_NAME>/input/",
"-p",
"OUTPUT=s3://<S3_BUCKET_NAME>/output/pig2"
],
[
"pig-script",
"--run-pig-script",
"--args",
"-f",
"s3://<S3_BUCKET_NAME>/files/ny-taxi.pig",
"-p",
"INPUT=s3://<S3_BUCKET_NAME>/input/",
"-p",
"OUTPUT=s3://<S3_BUCKET_NAME>/output/pig3"
],
[
"pig-script",
"--run-pig-script",
"--args",
"-f",
"s3://<S3_BUCKET_NAME>/files/ny-taxi.pig",
"-p",
"INPUT=s3://<S3_BUCKET_NAME>/input/",
"-p",
"OUTPUT=s3://<S3_BUCKET_NAME>/output/pig4"
],
[
"pig-script",
"--run-pig-script",
"--args",
"-f",
"s3://<S3_BUCKET_NAME>/files/ny-taxi.pig",
"-p",
"INPUT=s3://<S3_BUCKET_NAME>/input/",
"-p",
"OUTPUT=s3://<S3_BUCKET_NAME>/output/pig5"
]
],
"deleteCluster": false
}