Giter Site home page Giter Site logo

bwinant / serverless-dependson-plugin Goto Github PK

View Code? Open in Web Editor NEW
8.0 3.0 1.0 9 KB

Serverless plugin that automatically generates DependsOn references for AWS Lambdas to prevent AWS RequestLimitExceeded errors

License: MIT License

JavaScript 100.00%
serverless cloudformation dependson plugin

serverless-dependson-plugin's Introduction

Serverless DependsOn Plugin

serverless License: MIT npm version downloads

If you have a Serverless application that executes AWS Lambdas inside a VPC, then chances are you have encountered this error:

Your request has been throttled by EC2, please make sure you have enough API rate limit. 
EC2 Error Code: RequestLimitExceeded. EC2 Error Message: Request limit exceeded.

One solution to this error is to make all your lambdas dependent on each other in a chain. This will make CloudFormation deploy your lambdas sequentially and prevent the RequestLimitExceeded error. For more information on this error see: serverless/serverless#3339

The drawback to this solution is that you have to manually customize the Resources section of your serverless.yml and override the lambda definitions to set the CloudFormation DependsOn attribute. This plugin will do that automatically.

Requirements

  • Node.js 8+
  • NPM 5+
  • Serverless Framework 1.32+

Installation

Install Serverless:

npm install -g serverless

Install plugin via npm:

npm install serverless-dependson-plugin --save-dev

Configuration

Update the plugins section of your serverless.yml:

plugins:
    - serverless-dependson-plugin

Deploy without errors!

Disable the plugin

Sometimes you may be able to deploy your serverless application without receiving the RequestLimitExceeded error. To test deploying your application without throttling, you can temporarily disable the plugin by:

Passing the following command line option to serverless:

--dependson-plugin=[disabled|off|false]

Adding a dependsOn section to the custom section of your serverless.yml:

custom:
  dependsOn:
    enabled: false     

Deployment performance

Because your lambdas will now be deployed sequentially, your stack deployment time will drastically increase. You can try to improve your deployment time by letting the plugin build multiple lambda DependsOn "chains". This will let CloudFormation do some parallelization of the lambda deployments.

You can configure this by adding a dependsOn section to the custom section of your serverless.yml:

custom:
  dependsOn:
    chains: <an integer greater than 1>

If the value of the chains parameter is not an integer or is less than 1, it will default to 1 without failing the deployment.

Enabling this option may still trigger the RequestLimitExceeded error. Amazon does not disclose what will trip their rate limiter, so you may need to experiment with this option to get the best deployment performance without hitting the request limit.

Examples

plugins:
    - serverless-dependson-plugin
    
custom:
  dependsOn:
    # Optional. Defaults to true, set to false to disable the plugin
    enabled: true
    # Optional. Sets amount of lambda deployment parallelization plugin will attempt to create. Defaults to 1  
    chains: 3    
      

serverless-dependson-plugin's People

Contributors

bwinant avatar mcastellini avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

mcastellini

serverless-dependson-plugin's Issues

Circular dependencies?

We hit the EC2 rate limit error and adding this plugin solves the problem for exactly one time, any further deployment yields a circular dependency error on the CloudFormation SAM validation stage.

My project is also using serverless-webpack and serverless-appsync-plugin, I guess the only possible conflict here is the appsync plugin trying to have the functions depends on AppSync itself.

Not sure where to dig yet, any clues?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.