Skip to content

Minimal Workflow orchestrator for AWS Step Functions

Notifications You must be signed in to change notification settings

Clever/workflow-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

workflow-manager

Orchestrator for AWS Step Functions.

GoDoc

Owned by eng-infra

Motivation

AWS Step Functions (SFN) is a service for running state machines as defined by the States Language Spec.

workflow-manager exposes a data model and API on top of SFN that aims to hide some of the details of SFN and add features on top of what SFN provides.

Data model

The full data model can be viewed in workflow-manager's swagger.yml.

Workflow Definitions

Workflow definitions are state machines: they receive input and process it through a series of states. Workflow definitions additionally support:

  • Versioning
  • Shorthand for defining the Resource for a Task state. SFN requires the Resource field to be a full Amazon ARN. Workflow manager only requires the Activity Name and takes care of expanding it to the full ARN.

The full schema for workflow definitions can be found here.

Workflows

A workflow is created when you run a workflow definition with a particular input. Workflows add to the concept of Executions in SFN by additionally supporting these parameters on submission:

  • namespace: this parameter will be used when expanding Resources in workflow definitions to their full AWS ARN. This allows deployment / targeting of Resources in different namespaces (i.e. environments).
  • queue: workflows can be submitted into different named queues

Workflows store all of the data surrounding the execution of a workflow definition: initial input, the data passed between states, the final output, etc.

For more information, see the full schema definition and the AWS documentation for state machine data.

Development

Overview of packages

  • main: contains the api handler

  • gen-go / gen-js: (Go) server and (Go/JS) client code auto-generated from the swagger.yml specification.

  • docs: auto-generated markdown documentation from the swagger.yml definition.

  • executor: contains the main WorkflowManager interface for creating, stopping and updating Workflows. This is where interactions with the SFN API occur.

  • resources: methods for initializing and working with the auto-generated types.

  • store: Workflow Manager supports persisting its data model DynamoDB or in-memory data stores.

Running a workflow at Clever

  1. Run workflow-manager on your local machine (ark start -l)

  2. Use the existing sfncli-test workflow definition.

curl -XGET http://localhost:8080/workflow-definitions/sfncli-test:master
# sample output:
[
  {
  	"createdAt": "2017-10-25T18:11:03.350Z",
  	"id": "5815bfaa-8f2a-49c6-8d69-3af91c4b960d",
  	"manager": "step-functions",
  	"name": "sfncli-test:master",
  	"stateMachine": {
  		"StartAt": "echo",
  		"States": {
  			"echo": {
  				"End": true,
  				"Resource": "echo",
  				"Type": "Task"
  			}
  		},
  		"TimeoutSeconds": 60,
  		"Version": "1.0"
  	}
  }
]
  1. The sfncli-test workflow definition contains a single state that references an "echo" resource. You can run this resource by going to the sfncli repo and running that locally via ark start -l.

  2. Submit a workflow by making an API call to your locally running workflow-manager. This can be done via ark:

    WORKFLOWMANAGER_URL=http://localhost:8080 ark submit sfncli-test:master '{"foo":true}'
    
  3. Check on the status of the workflow. This can also be done via ark:

    WORKFLOWMANAGER_URL=http://localhost:8080 ark workflows --workflow-id <id> --follow/full
    

Updating the Data Store at Clever

  • If you need to add an index to the DynamoDB store, update the DynamoDB configuration in through the infra repo in addition to making code changes in this repo. The list of indices can be verified in the AWS console.
  • The DynamoDB store ignores Workflow.Jobs in case the size of the Workflow > 400KB due to DynamoDB limits.

Updating the API

  • Update swagger.yml with your endpoints. See the Swagger spec for additional details on defining your swagger file.
  • Run make generate to generate the supporting code.
  • Run make build, make run, or make test - any of these should fail with helpful errors about how to start implementing the business logic.