Step Functions Flashcards

1
Q

How one can identify a Step Function’s single unit of work performed by a state machine?

A

Type must be “task” and Reource is a required parameter

"HelloWorld": {
  "Type": "Task",
  "Resource": "arn:aws:lambda:us-east-1:123456789012:function:HelloFunction",
  "Next": "AfterHelloWorldState",
  "Comment": "Run the HelloWorld Lambda function"
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The default Type for Step Functions state machines is:

A

Standard

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Step Functions Standard Workflows are ideal for:

A

long-running (up to one year), durable, and auditable workflows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In Step Functions Standard Workflows, for how long you can retrieve the full execution history?

A

You can retrieve the full execution history using the Step Functions API for up to 90 days after your execution completes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How Step Functions Standard Workflow executions are billed?

A

Standard Workflow executions are billed according to the number of state transitions processed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Step Functions Express Workflows are ideal for:

A

Express Workflows are ideal for:
- high-volume,
- event-processing workloads such as IoT data ingestion,
- streaming data processing and transformation
- mobile application backends.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the Step functions Standard vs Express Workflows maximum durations?

A

One year on Standard and five minutes on Express.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the Step functions Standard vs Express Workflows supported execution start rates?

A
  • Standard: Over 2,000 per second
  • Express: Over 100,000 per second
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What service can automate and orchestrate a multi-source high-volume flow of data in a scalable data management solution built using AWS services?

A

Step Functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly