-
Notifications
You must be signed in to change notification settings - Fork 138
/
step-functions-resources.yaml
348 lines (315 loc) · 11.8 KB
/
step-functions-resources.yaml
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this
# software and associated documentation files (the "Software"), to deal in the Software
# without restriction, including without limitation the rights to use, copy, modify,
# merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
AWSTemplateFormatVersion: "2010-09-09"
Description: >
This template manages sample AWS Step Functions resources to be orchestrate AWS Glue jobs and crawlers.
Parameters:
MarketingAndSalesDatabaseName:
Type: String
MinLength: "4"
Default: "marketingandsales_qs"
Description: "Name of the AWS Glue database."
SalesPipelineTableName:
Type: String
MinLength: "4"
Default: "salespipeline_qs"
Description: "Name of the Sales Pipeline data table in AWS Glue."
MarketingTableName:
Type: String
MinLength: "4"
Default: "marketing_qs"
Description: "Name of the Marketing data table in AWS Glue."
GlueRunnerActivityName:
Type: String
Default: "GlueRunnerActivity"
Description: "Name of the AWS Step Functions activity to be polled by GlueRunner."
AthenaRunnerActivityName:
Type: String
Default: "AthenaRunnerActivity"
Description: "Name of the AWS Step Functions activity to be polled by AthenaRunner."
ArtifactBucketName:
Type: String
MinLength: "1"
Description: "Name of the S3 bucket containing source .zip files. Bucket is NOT created by this CFT."
LambdaSourceS3Key:
Type: String
MinLength: "1"
Description: "Name of the S3 key of Glue Runner lambda function .zip file."
DataBucketName:
Type: String
MinLength: "1"
Description: "Name of the S3 bucket in which the source Marketing and Sales data will be uploaded. Bucket is created by this CFT."
Resources:
#IAM Resources
StateExecutionRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- states.us-east-1.amazonaws.com
Action:
- sts:AssumeRole
Policies:
-
PolicyName: "StatesExecutionPolicy"
PolicyDocument:
Version: "2012-10-17"
Statement:
-
Effect: "Allow"
Action: "lambda:InvokeFunction"
Resource: "*"
Path: "/"
# Activity resources
GlueRunnerActivity:
Type: "AWS::StepFunctions::Activity"
Properties:
Name: !Ref GlueRunnerActivityName
AthenaRunnerActivity:
Type: "AWS::StepFunctions::Activity"
Properties:
Name: !Ref AthenaRunnerActivityName
WaitForSalesDataActivity:
Type: "AWS::StepFunctions::Activity"
Properties:
Name: !Sub "${DataBucketName}-SalesPipeline_QuickSightSample.csv"
WaitForMarketingDataActivity:
Type: "AWS::StepFunctions::Activity"
Properties:
Name: !Sub "${DataBucketName}-MarketingData_QuickSightSample.csv"
# State Machine resources
# State machine for testing Athena Runner
AthenaRunnerTestETLOrchestrator:
Type: "AWS::StepFunctions::StateMachine"
Properties:
StateMachineName: AthenaRunnerTestETLOrchestrator
DefinitionString:
Fn::Sub:
- |-
{
"StartAt": "Configure Athena Query",
"States": {
"Configure Athena Query":{
"Type": "Pass",
"Result": "{ \"AthenaQueryString\" : \"SELECT * FROM ${GlueTableName} limit 10;\", \"AthenaDatabase\": \"${GlueDatabaseName}\", \"AthenaResultOutputLocation\": \"${AthenaResultOutputLocation}\", \"AthenaResultEncryptionOption\": \"${AthenaResultEncryptionOption}\"}",
"Next": "Execute Athena Query"
},
"Execute Athena Query":{
"Type": "Task",
"Resource": "${AthenaRunnerActivityArn}",
"End": true
}
}
}
- {
GlueDatabaseName: !Ref MarketingAndSalesDatabaseName,
GlueTableName: !Ref MarketingTableName,
AthenaRunnerActivityArn: !Ref AthenaRunnerActivity,
AthenaResultOutputLocation: !Sub "s3://${DataBucketName}/athena-runner-output/",
AthenaResultEncryptionOption: "SSE_S3"
}
RoleArn: !GetAtt StateExecutionRole.Arn
MarketingAndSalesETLOrchestrator:
Type: "AWS::StepFunctions::StateMachine"
Properties:
StateMachineName: MarketingAndSalesETLOrchestrator
DefinitionString:
Fn::Sub:
- |-
{
"Comment": "Marketing and Sales ETL Pipeline Orchestrator.",
"StartAt": "Pre-process",
"States": {
"Pre-process": {
"Type": "Pass",
"Next": "Start Parallel Glue Jobs"
},
"Start Parallel Glue Jobs": {
"Type": "Parallel",
"Branches": [
{
"StartAt": "Wait For Sales Data",
"States": {
"Wait For Sales Data": {
"Type": "Task",
"Resource": "${WaitForSalesDataActivityArn}",
"Next": "Prep for Process Sales Data"
},
"Prep for Process Sales Data": {
"Type": "Pass",
"Result": "{\"GlueJobName\" : \"${ProcessSalesDataGlueJobName}\"}",
"Next": "Process Sales Data"
},
"Process Sales Data": {
"Type": "Task",
"Resource": "${GlueRunnerActivityArn}",
"End": true
}
}
},
{
"StartAt": "Wait For Marketing Data",
"States": {
"Wait For Marketing Data": {
"Type": "Task",
"Resource": "${WaitForMarketingDataActivityArn}",
"Next": "Prep for Process Marketing Data"
},
"Prep for Process Marketing Data": {
"Type": "Pass",
"Result": "{\"GlueJobName\" : \"${ProcessMarketingDataGlueJobName}\"}",
"Next": "Process Marketing Data"
},
"Process Marketing Data": {
"Type": "Task",
"Resource": "${GlueRunnerActivityArn}",
"End": true
}
}
}
],
"Next": "Prep For Joining Marketing And Sales Data",
"Catch": [ {
"ErrorEquals": ["GlueJobFailedError"],
"Next": "ETL Job Failed Fallback"
}]
},
"Prep For Joining Marketing And Sales Data": {
"Type": "Pass",
"Result": "{\"GlueJobName\" : \"${JoinMarketingAndSalesDataJobName}\"}",
"Next": "Join Marketing And Sales Data"
},
"Join Marketing And Sales Data": {
"Type": "Task",
"Resource": "${GlueRunnerActivityArn}",
"Catch": [ {
"ErrorEquals": ["GlueJobFailedError"],
"Next": "ETL Job Failed Fallback"
}],
"End": true
},
"ETL Job Failed Fallback": {
"Type": "Pass",
"Result": "This is a fallback from an ETL job failure.",
"End": true
}
}
}
- {
GlueRunnerActivityArn : !Ref GlueRunnerActivity,
WaitForSalesDataActivityArn: !Ref WaitForSalesDataActivity,
WaitForMarketingDataActivityArn: !Ref WaitForMarketingDataActivity,
ProcessSalesDataGlueJobName: "ProcessSalesData",
ProcessMarketingDataGlueJobName: "ProcessMarketingData",
JoinMarketingAndSalesDataJobName: "JoinMarketingAndSalesData"
}
RoleArn: !GetAtt StateExecutionRole.Arn
# On S3 Object Created Lambda Functions resources
OnS3ObjectCreatedLambdaExecutionRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonS3FullAccess
- arn:aws:iam::aws:policy/AmazonSNSFullAccess
- arn:aws:iam::aws:policy/CloudWatchLogsFullAccess
- arn:aws:iam::aws:policy/AWSStepFunctionsFullAccess
Path: "/"
OnS3ObjectCreatedPolicy:
Type: "AWS::IAM::Policy"
Properties:
PolicyDocument: {
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:*"
},
{
"Effect": "Allow",
"Action": "logs:CreateLogGroup",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"states:SendTaskSuccess",
"states:SendTaskFailure",
"states:SendTaskHeartbeat",
"states:GetActivityTask"
],
"Resource": "*"
}
]
}
PolicyName: "OnS3ObjectCreatedPolicy"
Roles:
- !Ref OnS3ObjectCreatedLambdaExecutionRole
OnS3ObjectCreatedLambdaFunction:
Type: "AWS::Lambda::Function"
Properties:
FunctionName: "ons3objectcreated"
Description: "Enables a Step Function State Machine to continue execution after a new object is created in S3."
Handler: "ons3objectcreated.handler"
Role: !GetAtt OnS3ObjectCreatedLambdaExecutionRole.Arn
Code:
S3Bucket: !Ref ArtifactBucketName
S3Key: !Ref LambdaSourceS3Key
Timeout: 180 #seconds
MemorySize: 128 #MB
Runtime: python2.7
DependsOn:
- OnS3ObjectCreatedLambdaExecutionRole
# For every bucket that needs to invoke OnS3ObjectCreated:
DataBucket:
Type: "AWS::S3::Bucket"
Properties:
BucketName: !Ref DataBucketName
NotificationConfiguration:
LambdaConfigurations:
- Function: !GetAtt OnS3ObjectCreatedLambdaFunction.Arn
Event: "s3:ObjectCreated:*"
Filter:
S3Key:
Rules:
-
Name: "suffix"
Value: "csv"
DependsOn:
- DataBucketPermission
DataBucketPermission:
Type: "AWS::Lambda::Permission"
Properties:
Action: 'lambda:InvokeFunction'
FunctionName: !Ref OnS3ObjectCreatedLambdaFunction
Principal: s3.amazonaws.com
SourceAccount: !Ref "AWS::AccountId"
SourceArn: !Sub "arn:aws:s3:::${DataBucketName}"