failure-lambda VS lambda-circuit-breaker

Compare failure-lambda vs lambda-circuit-breaker and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
failure-lambda lambda-circuit-breaker
3 1
90 20
- -
0.0 0.0
about 1 year ago about 1 year ago
JavaScript JavaScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

failure-lambda

Posts with mentions or reviews of failure-lambda. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-10.
  • Chaos engineering for serverless with AWS Fault Injection Simulator
    3 projects | dev.to | 10 Mar 2022
    failure-lambda is a small Node module for injecting failure into AWS Lambda. It offers a simple failure injection wrapper for your Lambda handler where you then can choose to inject failure by setting the failureMode to latency, exception, denylist, diskspace or statuscode. https://github.com/gunnargrosch/failure-lambda
  • What do you mean with: "There is no root cause" ?!?
    1 project | dev.to | 25 Feb 2021
    In one of our last projects, I started using Failure-Lambda module from Gunnar Grosch to be able to inject failure in our system. Not yet in production, but it helped a lot during the test and staging phase to detect and handle possible errors that we overlooked. (If you want to know more about Chaos Engineering and Failure Lambda check out this post) So I was very eager to see his speech about Chaos Engineering at the Hamburg Serverless Days.
  • Circuit Breaker Solution for AWS Lambda Functions
    2 projects | dev.to | 13 Jan 2021
    A common approach is to implement a circuit breaker inside your function and use DynamoDB to store the circuit breaker state (like Gunnar Grosch’s failure lambda node.js implementation and Jeremy Daly outlines in his AWS Reference Architecture Pattern). The Lambda function will fail before calling the Third-Party API when a failure threshold has been exceeded. This protects the downstream service, but it will not stop AWS Lambda polling the upstream queue and invoking your function. You also have to make changes to lambda function code, specific to the particular Lambda runtime and programming language. The approach introduces a number of DynamoDB requests which could significantly increase costs.

lambda-circuit-breaker

Posts with mentions or reviews of lambda-circuit-breaker. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-01-13.

What are some alternatives?

When comparing failure-lambda and lambda-circuit-breaker you can also consider the following projects:

aws-lambda-power-tuning - AWS Lambda Power Tuning is an open-source tool that can help you visualize and fine-tune the memory/power configuration of Lambda functions. It runs in your own AWS account - powered by AWS Step Functions - and it supports three optimization strategies: cost, speed, and balanced.

aws-lambda-chaos-injection - Chaos Injection library for AWS Lambda

aws-fis-templates-cdk - Collection of AWS Fault Injection Simulator (FIS) experiment templates deploy-able via the AWS CDK

serverless-layers - Serverless.js plugin implementing AWS Lambda Layers, reducing lambda size, warm-up, and deployment time.