Skip to content

Instantly share code, notes, and snippets.

@kob-aha
Last active January 14, 2024 09:44
Show Gist options
  • Save kob-aha/f3a67316f0d65ce9541bf6e817f12f65 to your computer and use it in GitHub Desktop.
Save kob-aha/f3a67316f0d65ce9541bf6e817f12f65 to your computer and use it in GitHub Desktop.
Chaos Engineering Blog - Table
Approach Pros Cons
Use a library in your Lambda code
  • Straightforward to use – update your Lambda code and re-deploy
  • Requires changing your Lambda code
  • Supports limited development languages
  • Problematic in case you have many functions or want to avoid deploying it to production
Use a Lambda Extension
  • Does not require changing your Lambda code
  • Can support many development languages (like this extension)
  • Requires deploying an extra component – Lambda layer
  • You might hit Lambda limits such as Lambda function size
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment