-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathtask-base.ts
435 lines (389 loc) · 12.9 KB
/
task-base.ts
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
import { Construct } from 'constructs';
import { renderJsonPath, State } from './state';
import * as cloudwatch from '../../../aws-cloudwatch';
import * as iam from '../../../aws-iam';
import * as cdk from '../../../core';
import { Chain } from '../chain';
import { FieldUtils } from '../fields';
import { StateGraph } from '../state-graph';
import { Credentials } from '../task-credentials';
import { CatchProps, IChainable, INextable, RetryProps } from '../types';
/**
* Props that are common to all tasks
*/
export interface TaskStateBaseProps {
/**
* An optional description for this state
*
* @default - No comment
*/
readonly comment?: string;
/**
* JSONPath expression to select part of the state to be the input to this state.
*
* May also be the special value JsonPath.DISCARD, which will cause the effective
* input to be the empty object {}.
*
* @default - The entire task input (JSON path '$')
*/
readonly inputPath?: string;
/**
* JSONPath expression to select select a portion of the state output to pass
* to the next state.
*
* May also be the special value JsonPath.DISCARD, which will cause the effective
* output to be the empty object {}.
*
* @default - The entire JSON node determined by the state input, the task result,
* and resultPath is passed to the next state (JSON path '$')
*/
readonly outputPath?: string;
/**
* JSONPath expression to indicate where to inject the state's output
*
* May also be the special value JsonPath.DISCARD, which will cause the state's
* input to become its output.
*
* @default - Replaces the entire input with the result (JSON path '$')
*/
readonly resultPath?: string;
/**
* The JSON that will replace the state's raw result and become the effective
* result before ResultPath is applied.
*
* You can use ResultSelector to create a payload with values that are static
* or selected from the state's raw result.
*
* @see
* https://docs.aws.amazon.com/step-functions/latest/dg/input-output-inputpath-params.html#input-output-resultselector
*
* @default - None
*/
readonly resultSelector?: { [key: string]: any };
/**
* Timeout for the task
*
* @default - None
* @deprecated use `taskTimeout`
*/
readonly timeout?: cdk.Duration;
/**
* Timeout for the task
*
* [disable-awslint:duration-prop-type] is needed because all props interface in
* aws-stepfunctions-tasks extend this interface
*
* @default - None
*/
readonly taskTimeout?: Timeout;
/**
* Timeout for the heartbeat
*
* @default - None
* @deprecated use `heartbeatTimeout`
*/
readonly heartbeat?: cdk.Duration;
/**
* Timeout for the heartbeat
*
* [disable-awslint:duration-prop-type] is needed because all props interface in
* aws-stepfunctions-tasks extend this interface
*
* @default - None
*/
readonly heartbeatTimeout?: Timeout;
/**
* AWS Step Functions integrates with services directly in the Amazon States Language.
* You can control these AWS services using service integration patterns
*
* @see https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html#connect-wait-token
*
* @default - `IntegrationPattern.REQUEST_RESPONSE` for most tasks.
* `IntegrationPattern.RUN_JOB` for the following exceptions:
* `BatchSubmitJob`, `EmrAddStep`, `EmrCreateCluster`, `EmrTerminationCluster`, and `EmrContainersStartJobRun`.
*
*/
readonly integrationPattern?: IntegrationPattern;
/**
* Credentials for an IAM Role that the State Machine assumes for executing the task.
* This enables cross-account resource invocations.
*
* @see https://docs.aws.amazon.com/step-functions/latest/dg/concepts-access-cross-acct-resources.html
*
* @default - None (Task is executed using the State Machine's execution role)
*/
readonly credentials?: Credentials;
}
/**
* Define a Task state in the state machine
*
* Reaching a Task state causes some work to be executed, represented by the
* Task's resource property. Task constructs represent a generic Amazon
* States Language Task.
*
* For some resource types, more specific subclasses of Task may be available
* which are more convenient to use.
*/
export abstract class TaskStateBase extends State implements INextable {
public readonly endStates: INextable[];
protected abstract readonly taskMetrics?: TaskMetricsConfig;
protected abstract readonly taskPolicies?: iam.PolicyStatement[];
private readonly timeout?: cdk.Duration;
private readonly taskTimeout?: Timeout;
private readonly heartbeat?: cdk.Duration;
private readonly heartbeatTimeout?: Timeout;
private readonly credentials?: Credentials;
constructor(scope: Construct, id: string, props: TaskStateBaseProps) {
super(scope, id, props);
this.endStates = [this];
this.timeout = props.timeout;
this.taskTimeout = props.taskTimeout;
this.heartbeat = props.heartbeat;
this.heartbeatTimeout = props.heartbeatTimeout;
this.credentials = props.credentials;
}
/**
* Add retry configuration for this state
*
* This controls if and how the execution will be retried if a particular
* error occurs.
*/
public addRetry(props: RetryProps = {}): TaskStateBase {
super._addRetry(props);
return this;
}
/**
* Add a recovery handler for this state
*
* When a particular error occurs, execution will continue at the error
* handler instead of failing the state machine execution.
*/
public addCatch(handler: IChainable, props: CatchProps = {}): TaskStateBase {
super._addCatch(handler.startState, props);
return this;
}
/**
* Continue normal execution with the given state
*/
public next(next: IChainable): Chain {
super.makeNext(next.startState);
return Chain.sequence(this, next);
}
/**
* Return the Amazon States Language object for this state
*/
public toStateJson(): object {
return {
...this.renderNextEnd(),
...this.renderRetryCatch(),
...this.renderTaskBase(),
...this._renderTask(),
};
}
/**
* Return the given named metric for this Task
*
* @default - sum over 5 minutes
*/
public metric(metricName: string, props?: cloudwatch.MetricOptions): cloudwatch.Metric {
return new cloudwatch.Metric({
namespace: 'AWS/States',
metricName,
dimensionsMap: this.taskMetrics?.metricDimensions,
statistic: 'sum',
...props,
}).attachTo(this);
}
/**
* The interval, in milliseconds, between the time the Task starts and the time it closes.
*
* @default - average over 5 minutes
*/
public metricRunTime(props?: cloudwatch.MetricOptions): cloudwatch.Metric {
return this.taskMetric(this.taskMetrics?.metricPrefixSingular, 'RunTime', { statistic: 'avg', ...props });
}
/**
* The interval, in milliseconds, for which the activity stays in the schedule state.
*
* @default - average over 5 minutes
*/
public metricScheduleTime(props?: cloudwatch.MetricOptions): cloudwatch.Metric {
return this.taskMetric(this.taskMetrics?.metricPrefixSingular, 'ScheduleTime', { statistic: 'avg', ...props });
}
/**
* The interval, in milliseconds, between the time the activity is scheduled and the time it closes.
*
* @default - average over 5 minutes
*/
public metricTime(props?: cloudwatch.MetricOptions): cloudwatch.Metric {
return this.taskMetric(this.taskMetrics?.metricPrefixSingular, 'Time', { statistic: 'avg', ...props });
}
/**
* Metric for the number of times this activity is scheduled
*
* @default - sum over 5 minutes
*/
public metricScheduled(props?: cloudwatch.MetricOptions): cloudwatch.Metric {
return this.taskMetric(this.taskMetrics?.metricPrefixPlural, 'Scheduled', props);
}
/**
* Metric for the number of times this activity times out
*
* @default - sum over 5 minutes
*/
public metricTimedOut(props?: cloudwatch.MetricOptions): cloudwatch.Metric {
return this.taskMetric(this.taskMetrics?.metricPrefixPlural, 'TimedOut', props);
}
/**
* Metric for the number of times this activity is started
*
* @default - sum over 5 minutes
*/
public metricStarted(props?: cloudwatch.MetricOptions): cloudwatch.Metric {
return this.taskMetric(this.taskMetrics?.metricPrefixPlural, 'Started', props);
}
/**
* Metric for the number of times this activity succeeds
*
* @default - sum over 5 minutes
*/
public metricSucceeded(props?: cloudwatch.MetricOptions): cloudwatch.Metric {
return this.taskMetric(this.taskMetrics?.metricPrefixPlural, 'Succeeded', props);
}
/**
* Metric for the number of times this activity fails
*
* @default - sum over 5 minutes
*/
public metricFailed(props?: cloudwatch.MetricOptions): cloudwatch.Metric {
return this.taskMetric(this.taskMetrics?.metricPrefixPlural, 'Failed', props);
}
/**
* Metric for the number of times the heartbeat times out for this activity
*
* @default - sum over 5 minutes
*/
public metricHeartbeatTimedOut(props?: cloudwatch.MetricOptions): cloudwatch.Metric {
return this.taskMetric(this.taskMetrics?.metricPrefixPlural, 'HeartbeatTimedOut', props);
}
protected whenBoundToGraph(graph: StateGraph) {
super.whenBoundToGraph(graph);
for (const policyStatement of this.taskPolicies || []) {
graph.registerPolicyStatement(policyStatement);
}
if (this.credentials) {
graph.registerPolicyStatement(new iam.PolicyStatement({
effect: iam.Effect.ALLOW,
actions: ['sts:AssumeRole'],
resources: [this.credentials.role.resource],
}));
}
}
/**
* @internal
*/
protected abstract _renderTask(): any;
private taskMetric(prefix: string | undefined, suffix: string, props?: cloudwatch.MetricOptions): cloudwatch.Metric {
if (prefix === undefined) {
throw new Error('Task does not expose metrics. Use the \'metric()\' function to add metrics.');
}
return this.metric(prefix + suffix, props);
}
private renderCredentials() {
return this.credentials ? FieldUtils.renderObject({ Credentials: { RoleArn: this.credentials.role.roleArn } }) : undefined;
}
private renderTaskBase() {
return {
Type: 'Task',
Comment: this.comment,
TimeoutSeconds: this.timeout?.toSeconds() ?? this.taskTimeout?.seconds,
TimeoutSecondsPath: this.taskTimeout?.path,
HeartbeatSeconds: this.heartbeat?.toSeconds() ?? this.heartbeatTimeout?.seconds,
HeartbeatSecondsPath: this.heartbeatTimeout?.path,
InputPath: renderJsonPath(this.inputPath),
OutputPath: renderJsonPath(this.outputPath),
ResultPath: renderJsonPath(this.resultPath),
...this.renderResultSelector(),
...this.renderCredentials(),
};
}
}
/**
* Task Metrics
*/
export interface TaskMetricsConfig {
/**
* Prefix for singular metric names of activity actions
*
* @default - No such metrics
*/
readonly metricPrefixSingular?: string;
/**
* Prefix for plural metric names of activity actions
*
* @default - No such metrics
*/
readonly metricPrefixPlural?: string;
/**
* The dimensions to attach to metrics
*
* @default - No metrics
*/
readonly metricDimensions?: cloudwatch.DimensionHash;
}
/**
*
* AWS Step Functions integrates with services directly in the Amazon States Language.
* You can control these AWS services using service integration patterns:
*
* @see https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html
*
*/
export enum IntegrationPattern {
/**
* Step Functions will wait for an HTTP response and then progress to the next state.
*
* @see https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html#connect-default
*/
REQUEST_RESPONSE = 'REQUEST_RESPONSE',
/**
* Step Functions can wait for a request to complete before progressing to the next state.
*
* @see https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html#connect-sync
*/
RUN_JOB = 'RUN_JOB',
/**
* Callback tasks provide a way to pause a workflow until a task token is returned.
* You must set a task token when using the callback pattern
*
* @see https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html#connect-wait-token
*/
WAIT_FOR_TASK_TOKEN = 'WAIT_FOR_TASK_TOKEN'
}
/**
* Timeout for a task or heartbeat
*/
export abstract class Timeout {
/**
* Use a duration as timeout
*/
public static duration(duration: cdk.Duration): Timeout {
return { seconds: duration.toSeconds() };
}
/**
* Use a dynamic timeout specified by a path in the state input.
*
* The path must select a field whose value is a positive integer.
*/
public static at(path: string): Timeout {
return { path };
}
/**
* Seconds for this timeout
*/
public abstract readonly seconds?: number;
/**
* Path for this timeout
*/
public abstract readonly path?: string;
}