Getting started with AWS Step Functions 01

Lu Liu
3 min readApr 25, 2022
Photo by Jason Dent on Unsplash

What is Step Functions?

AWS Step Functions is a serverless orchestration service that allows us to combine AWS Lambda functions and other AWS services to build applications.

Why Step Functions?

Before we dive in, first, we might want to understand why we need a ‘serverless orchestration service’. If we look at the modern applications we build nowadays, most likely, we can see them consisting of microservices.

The advantage of the microservices is that each microservice can be built, deployed and maintained individually, which increases the scalability and fault-tolerance of the whole application.

What’s more, in an application, each microservice needs to talk to each other. This is where the step functions become very handy and useful to link different components together as a serverless orchestration service. It is easier to manage each component with Step Functions in the workflow, and we can also visualise the workflow in the AWS console or on our local machine (e.g., VSCode + AWS Toolkit extension).

Step Functions also has error handling, retry & catch mechanism, it is also integrated with CloudWatch and X-Ray for us to be able to monitor its performance and help us debug.

In this blog, I’ll assume you already have some basic understanding of the below AWS services such as Lambda and Glue. The most common use cases for Step Functions are probably the integration with Lambda functions.

Step Functions also supports the integration with AWS Glue and SageMaker. For example, it can start a Glue job run or a SageMaker Batch Transform job. It can also run an Amazon ECS (Elastic Container Service) task, etc.

Please check out this page to see what other AWS services are supported by Step Functions.

How to define Step Functions state machines?

Below is a simple Step Function state machine:

It simply invokes a Lambda function and then starts a Glue job run.

There are a couple of different approaches to constructing state machines. Below are two ways that I normally use:

  1. In AWS Step Functions console -> click right top ‘Create State Machine’ -> select ‘Design your workflow visually’

This allows us to use ‘Workflow Studio’ to define our state machines visually:

A screenshot taken from the AWS console

2. Instead of using AWS console, we can also construct the state machines locally with the help of Visual Studio Code + AWS Toolkit extension:

A screenshot taken from the Visual Studio Code (Code example reference: Error handling in Step Functions )

The state machine definitions use the Amazon States Language which is a JSON-based, structured language (see the left side of the image above).

The state machine definition uses a concept called ‘States’, which is basically the elements/steps that we use to define the actions in state machines.

According to the Step Function developer guide: “Individual states can make decisions based on their input, perform actions, and pass output to other states.” This will be covered in the follow-up blog ‘Getting started with AWS Step Functions 02’. I’ll go through some of the commonly-used states and explain the usages based on our example state machine we used in this blog.

Resources

Originally published at https://luliublog.com on April 25, 2022.

--

--

Lu Liu

I ❤️data and cats | Sharing my journey in tech.