What is AWS Step functions?
✓ It's is an serverless orchestration service that allows you to integrate with various other AWS service so easily.
Example: You can connect series of lambda function in a step function and you can define when or in which order the lambda functions should execute.
✓ Using AWS console you can easily, visualize the steps associated and understand failed step quickly and can take action.
✓ Step function runs based on state machine and task.
✓ Step functions allows you to create starting from simple workflow (eg: like call an lambda function ) to complex workflow (eg: like call 100 lambda function in parallel and once 100 lambda execution completes, call 200 glue jobs in series and publish success or failure message to SNS topic).
✓ Step functions reduces that extra lines code that you need to write for system/service integration, wait and error handling.
✓ Right from the AWS step functions you can able to call the AWS SDK's to perform extra operations on hundreds of AWS service, right inside from your step function without writting any piece of code.
Two types of step functions you can create while am writing this post in Sep'2023.
✓ Standard:
~ For standard workflows.
~ 2,000 per second execution rate.
~ 4,000 per second state transition rate.
~ Priced by state transition.
✓ Express
~ For quick workflows.
~ 100,000 per second execution rate.
~ Unlimited state transition rate.
~ Priced by number and duration of executions.
Benefits of using AWS Step functions?
#1: Function orchestration
#2: Branching
#3: Error handling
#4: Iteration or looping
#5: Parallel processing
To know this kind of interesting tech stuff's follow / subscribe / Bookmark 👉Tech Bird👈
Have a Great Day
:)
Comments