About 131,000 results
Open links in new tab
  1. AWS Lambda vs AWS step function - Stack Overflow

    Jan 9, 2019 · I am thinking to use AWS lambda function to split the file as well as to load the data. I recently came across AWS step function which can also serve the purpose based on what I …

  2. Advantage of Using AWS Step funtions over (lambda calling lambda)

    Jun 10, 2021 · The advantage of using AWS Step Functions is it lets you orchestrate multiple AWS services to perform a specific task. So if you have many Lambda functions, you can use …

  3. Suitability of app with long running tasks for AWS Lambda or AWS …

    Jun 5, 2017 · It seems like the AWS Step Functions service is actually a better fit for my use case, but my understanding is that this service is backed by Lambda, so the tasks will still have the 5 …

  4. Airflow versus AWS Step Functions for workflow - Stack Overflow

    Sep 22, 2020 · Step Functions use easy to use JSON as state machine definition, while Airflow uses Python script. Step Functions support async callbacks, i.e. state machine pauses until an …

  5. Is AWS Lambda preferred over AWS Glue Job? - Stack Overflow

    Aug 26, 2020 · Good list. I would add Step Functions to the list of AWS services that Lambda integrates with as this brings state machine functionality to data processing using Lambda.

  6. Step Functions vs. Kubeflow on AWS EKS - Stack Overflow

    Jun 23, 2021 · I see three ways to build said pipeline on AWS. 1) I can write an Airflow DAG and use AWS managed workflows for Apache airflow. 2) I can write an AWS lambda pipeline with …

  7. AWS Step Function vs Lambda - Stack Overflow

    Dec 12, 2018 · Thread 3 : Transform MasterObject -> Object3, then publish to queue3 This can be achieved by using step functions : activity worker + lambdas. My question is do I even need …

  8. AWS deployment Options: ECS, Batch, Step Functions, which to use?

    Jul 9, 2024 · I think ECS/Fargate is probably the solution here, with possibly Step Functions to orchestrate the ECS/Fargate tasks if your workflow is complicated enough. Or Step Functions …

  9. Adding time delay in Step Functions vs Lambda - Stack Overflow

    Nov 14, 2022 · AWS Step Functions Pricing AWS Lambda Pricing Here's a quick work-up I did: ... From these numbers, the most cost effective solution would be to remove the Step Functions …

  10. Pass and use input (parameters) to a lambda task from a step …

    Jan 25, 2019 · I have a simple step function launching a lambda and I am looking for a way to pass parameters (event / context) to each of several consequent tasks. My step function looks …