Skip to content

chaosgears/FailureInjectionLayer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Injecting Chaos to AWS Lambda functions using Lambda Layers

  • See the full blog post describing how to install and use this small chaos library here.

Features

  • Support for Latency injection using delay
  • Support for Exception injection using exception_msg
  • Support for HTTP Error status code injection using error_code
  • Using for SSM Parameter Store to control the experiment using isEnabled
  • Per Lambda function injection control using Environment variable (FAILURE_INJECTION_PARAM) (thanks to Gunnar Grosch)
  • Support for Serverless Framework using sls deploy (thanks to Gunnar Grosch)
  • Support for adding rate of failure using rate. (Default rate = 1)

Parameter Store Object

{ 
    "delay": 200,
    "isEnabled": true,
    "error_code": 404,
    "exception_msg": "I FAILED",
    "rate": 0.5
}

Deploy the chaos config in paramater store.

  • run the following command:
    $ aws ssm put-parameter --region eu-north-1 --name chaoslambda.config --type String --overwrite --value "{ \"delay\": 400, \"isEnabled\": true, \"error_code\": 404, \"exception_msg\": \"I really failed seriously\" }"
    

Building and deploying

  1. Clone the small chaos experiment library

    • run the following command:

      git clone git@github.com:adhorn/LatencyInjectionLayer.git
      
  2. Build the package manually (skip to step 4 if you want to use the serverless framework)

    Regardless if you are using Linux, Mac or Windows, the simplest way to create your ZIP package for Lambda Layer is to use Docker. If you don't use Docker but instead build your package directly in your local environment, you might see an invalid ELF header error while testing your Lambda function. That's because AWS Lambda needs Linux compatible versions of libraries to execute properly. That's where Docker comes in handy. With Docker you can very easily run a Linux container locally on your Mac, Windows and Linux computer, install the Python libraries within the container so they're automatically in the right Linux format, and ZIP up the files ready to upload to AWS. You'll need Docker installed first. (https://www.docker.com/products/docker).

  • Spin-up a docker-lambda container, and install all the Python requirements in a directory call .vendor
    • run the following command:

      $ docker run -v $PWD:/var/task -it lambci/lambda:build-python3.6 /bin/bash -c "pip install -r python/requirements.txt -t ./python/.vendor"
      
    • The -v flag makes the local directory available inside the container in the directory called working. You should now be inside the container with a shell prompt.

  1. Package your code

    • run the following commands:

      $ zip -r chaos_lib.zip ./python
      

      Voila! Your package file chaos_lib.zip is ready to be used in Lambda Layer.

  2. Deploy with Serverless framework

    • run the following command:
      sls deploy
      
  3. Use the (python) method decorators to inject the failure to functions (either the whole Lambda handler or any other functions).

  • For latency injection, use
    @corrupt_delay
  • For exception injection, use
    @corrupt_exception
  • For HTTP error status code injection, use
    @corrupt_statuscode

Happy breaking!

About

Small example of how to use AWS Lambda Layers to inject latency into AWS Lambda Functions

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%