Software Alternatives, Accelerators & Startups

Effective error handling strategies for Lambda invocation models

Amazon SQS AWS Lambda Amazon API Gateway
  1. Amazon Simple Queue Service is a fully managed message queuing service.
    Pricing:
    • Open Source
    For service-to-service architectures, we can implement various retry solutions, such as sending an error message to an SQS queue for Lambda to retrieve and process.

    #Data Integration #Stream Processing #Web Service Automation 72 social mentions

  2. Automatic, event-driven compute service
    Pricing:
    • Open Source
    Lambda, being a compute service, is a fundamental building block of any AWS serverless architecture. Although humans can invoke Lambda functions manually, other AWS services will generally trigger them as part of an architecture.

    #Cloud Hosting #Cloud Computing #Object Storage 275 social mentions

  3. Create, publish, maintain, monitor, and secure APIs at any scale
    In synchronous or request-response invocation, the Lambda service forwards the request directly to the function. The function runs the code and returns the response to the Lambda service, which then passes it on to the calling client. Services like API Gateway, Application Load Balancer, and Cognito invoke Lambda this way.

    #API Tools #APIs #Web Service Automation 107 social mentions

Discuss: Effective error handling strategies for Lambda invocation models

Log in or Post with