0Pricing
Serverless Backend with AWS Lambda & API Gateway · Lección

Orquestación de flujos de trabajo complejos

Cree flujos de trabajo serverless sofisticados que incluyan lógica condicional, ejecución en paralelo y gestión de errores mediante Step Functions.

Orquestación de flujos de trabajo complejos es una lección gratuita de Serverless Backend with AWS Lambda & API Gateway en CoddyKit. Esta es la lección 3 de 4. Puedes leer la lección completa abajo gratuitamente — luego la practicas en el navegador con un editor de código integrado y un tutor de IA 24/7. Forma parte de la ruta de aprendizaje de Serverless Backend with AWS Lambda & API Gateway, y tu progreso se sincroniza en la web y la app de CoddyKit. El curso de Serverless Backend with AWS Lambda & API Gateway incluye 4 lecciones en total.

Partes de esta lección aún no han sido traducidas y se muestran en inglés.

Orchestrating Complex Workflows

Welcome! In this lesson, we'll dive into building sophisticated serverless workflows with AWS Step Functions.

We'll explore how to add decision-making, run tasks concurrently, and make your workflows resilient to errors.

Decision Making with Choice

The Choice state is your workflow's "if/else" statement. It allows your state machine to make decisions based on the input it receives.

  • Each choice rule has a condition (e.g., input value equals "X").
  • If a condition is met, the workflow transitions to a specified state.
  • A default state handles cases where no conditions match.

Choice State Example

Here's how a Choice state looks in your Step Functions definition. It checks an orderStatus field to decide the next step.

{  "StartAt": "CheckOrderStatus",  "States": {    "CheckOrderStatus": {      "Type": "Choice",      "Choices": [        {          "Variable": "$.orderStatus",          "StringEquals": "PENDING",          "Next": "ProcessPendingOrder"        },        {          "Variable": "$.orderStatus",          "StringEquals": "SHIPPED",          "Next": "NotifyShipping"        }      ],      "Default": "HandleUnknownStatus"    },    "ProcessPendingOrder": {      "Type": "Task",      "Resource": "arn:aws:lambda:us-east-1:123456789012:function:processPending",      "End": true    },    "NotifyShipping": {      "Type": "Task",      "Resource": "arn:aws:lambda:us-east-1:123456789012:function:notifyShipping",      "End": true    },    "HandleUnknownStatus": {      "Type": "Fail",      "Cause": "Unknown order status",      "Error": "InvalidOrderStatus"    }  }}

Running Tasks in Parallel

The Parallel state allows you to execute multiple branches of your workflow concurrently. This is great for tasks that don't depend on each other and can run at the same time.

  • Each branch runs independently.
  • The Parallel state waits for all branches to complete.
  • Outputs from all branches are combined into an array.

Parallel State Example

This Parallel state simultaneously processes an order and updates inventory, then combines their results.

{  "StartAt": "ProcessOrderAndInventory",  "States": {    "ProcessOrderAndInventory": {      "Type": "Parallel",      "Branches": [        {          "StartAt": "ProcessOrder",          "States": {            "ProcessOrder": {              "Type": "Task",              "Resource": "arn:aws:lambda:us-east-1:123456789012:function:processOrder",              "End": true            }          }        },        {          "StartAt": "UpdateInventory",          "States": {            "UpdateInventory": {              "Type": "Task",              "Resource": "arn:aws:lambda:us-east-1:123456789012:function:updateInventory",              "End": true            }          }        }      ],      "Next": "CombineResults"    },    "CombineResults": {      "Type": "Pass",      "End": true    }  }}

Handling Errors Gracefully

Things can go wrong! Step Functions provides robust error handling with the Catch field. You can specify what errors to catch and which state to transition to when an error occurs.

  • Errors are identified by their type (e.g., States.TaskFailed).
  • You can catch specific errors or a generic States.ALL.
  • The ResultPath specifies where the error output is placed.

Catch State Example

Here, if the ProcessPayment task fails, it's caught and the workflow moves to the RefundOrder state.

{  "StartAt": "ProcessPayment",  "States": {    "ProcessPayment": {      "Type": "Task",      "Resource": "arn:aws:lambda:us-east-1:123456789012:function:processPayment",      "Catch": [        {          "ErrorEquals": [ "States.TaskFailed", "PaymentFailure" ],          "Next": "RefundOrder",          "ResultPath": "$.errorInfo"        }      ],      "Next": "CompleteOrder"    },    "RefundOrder": {      "Type": "Task",      "Resource": "arn:aws:lambda:us-east-1:123456789012:function:refundOrder",      "End": true    },    "CompleteOrder": {      "Type": "Pass",      "End": true    }  }}

Retrying Failed Tasks

For transient errors (like network timeouts), it's often better to retry the task a few times before failing. The Retry field lets you define retry policies.

  • Specify which errors to retry.
  • Configure IntervalSeconds, MaxAttempts, and BackoffRate.
  • Exponential backoff (BackoffRate > 1) is highly recommended.

Retry State Example

This task will retry up to 3 times with exponential backoff if a Timeout or NetworkError occurs.

{  "StartAt": "CallExternalService",  "States": {    "CallExternalService": {      "Type": "Task",      "Resource": "arn:aws:lambda:us-east-1:123456789012:function:callExternalService",      "Retry": [        {          "ErrorEquals": [ "States.Timeout", "NetworkError" ],          "IntervalSeconds": 2,          "MaxAttempts": 3,          "BackoffRate": 1.5        }      ],      "End": true    }  }}

Orchestrating It All

The real power of Step Functions comes from combining these states. You can build highly sophisticated workflows by nesting Parallel states within Choices, adding Retries to Tasks, and Catching errors at various levels.

This allows you to model almost any business process, making your serverless applications robust and adaptable.

Workflow Logic Check

Consider a workflow that needs to:

  1. Check if a user is premium.
  2. If premium, send a personalized email AND update their loyalty points simultaneously.
  3. If not premium, send a standard email.
  4. Handle any email sending failures by logging them without stopping the workflow.

Which Step Functions states would be essential to implement this logic?

Recap: Complex Workflows

You've mastered advanced Step Functions concepts!

  • We used Choice states for conditional logic.
  • We leveraged Parallel states for concurrent execution.
  • We implemented robust error handling with Catch blocks.
  • And we learned about Retry policies for transient failures.

These tools allow you to build incredibly powerful and resilient event-driven serverless applications!

Preguntas frecuentes

¿La lección «Orquestación de flujos de trabajo complejos» es gratis?

Sí — el texto completo de «Orquestación de flujos de trabajo complejos» es gratis para leer aquí en la web. Para practicarla de forma interactiva (editor de código integrado y tutor de IA 24/7) y desbloquear el resto del curso de Serverless Backend with AWS Lambda & API Gateway, actualiza a CoddyKit PRO. El curso de Serverless Backend with AWS Lambda & API Gateway incluye 4 lecciones en total.

¿Qué aprenderé en «Orquestación de flujos de trabajo complejos»?

Cree flujos de trabajo serverless sofisticados que incluyan lógica condicional, ejecución en paralelo y gestión de errores mediante Step Functions. Practicas Serverless Backend with AWS Lambda & API Gateway con código real que ejecutas directamente en el navegador, y un tutor de IA 24/7 responde tus preguntas mientras trabajas en la lección.

¿Necesito experiencia previa para empezar Serverless Backend with AWS Lambda & API Gateway?

No se requiere experiencia previa. Serverless Backend with AWS Lambda & API Gateway en CoddyKit está estructurado para principiantes hasta estudiantes avanzados, así que puedes empezar aquí o desde el inicio y avanzar a tu ritmo. Esta es la lección 3 de 4.

¿Cuánto tiempo toma la lección «Orquestación de flujos de trabajo complejos»?

La mayoría de las lecciones de CoddyKit toman alrededor de 5–10 minutos. Cada una es compacta e interactiva, así que avanzas constantemente y retomas exactamente por donde dejaste en la web y la app.

¿Puedo escribir y ejecutar código en esta lección de Serverless Backend with AWS Lambda & API Gateway?

Sí. Cada lección de Serverless Backend with AWS Lambda & API Gateway incluye un editor de código integrado, así que escribes y ejecutas código real directamente en tu navegador y obtienes retroalimentación instantánea de IA — sin configuración local necesaria.

Todas las lecciones de este curso

  1. Introducción a AWS Step Functions
  2. Creación de máquinas de estados
  3. Orquestación de flujos de trabajo complejos
  4. Gestión de errores y reintentos en máquinas de estados
← Volver a Serverless Backend with AWS Lambda & API Gateway