lambda-warmer icon indicating copy to clipboard operation
lambda-warmer copied to clipboard

A module to optimize AWS Lambda function cold starts

Results 21 lambda-warmer issues
Sort by recently updated
recently updated
newest added

Hello. Due to [this commit](https://github.com/jeremydaly/lambda-warmer/commit/21a9519536f40113602ac442d25590efc709e0f1), I'm now seeing these errors when building with Rollup: ``` $ rollup -ci lambdas/graphql-resolvers/src/resolvers/barrel/index.js -o lambdas/graphql-resolvers/dist/barrel/index.js lambdas/graphql-resolvers/src/resolvers/barrel/index.js → lambdas/graphql-resolvers/dist/barrel/index.js... (!) Circular dependency: node_modules/aws-sdk/lib/util.js -> node_modules/aws-sdk/lib/core.js...

In an organization with multiple micro-services, each with multiple lambdas, the CloudWatch [**Rule** limit](https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/cloudwatch_limits_cwe.html) of 100 is easily reached. With these additions, there can be a single warmer per micro-service,...

## Expected behavior The `lastAccessed` field in the log is the timestamp of when the function was last accessed by a **non-warming** event. ## Actual behavior The `lastAccessed` field in...

enhancement

Hi, I started playing with the module and it worked great for lambda not associated to a VPC, but I couldn't make it work with lambda inside a VPC: the...

question

Hello, I followed the tutorial and added the code (via the callback technique) to my existing lambda function. I created a test event on the lambda with the following event...

bug

Hi Jeremy, Great little tool here for warming, thanks for it! One possible add to the documentation, maybe in the same place where you make a NOTE of the invoke...

enhancement
help wanted
good first issue
documentation

I noticed that if the target is overwritten then the `function` value in the logs doesn't get updated. I assume this is a bug, and not intentional. Fixes #63

Hi, Just started to try and use this, and I think this log message is not correct. I assume it should reference the target if overridden, else fallback to the...

If you look at line 106 where is being checked whether a delay must be triggered within the lambda, the [code looks at](https://github.com/jeremydaly/lambda-warmer/blob/9c54e32f5bb7ce66c35d9becf7eb781f5756ec75/index.js#L106) `invokeCount`, which increases for every invoke. I...

question

The current version (2.0.1) does not support alias names for lambda invocations. I support the "$LATEST" tag and version numbers, but not any other alias e.g. `stable`. Therefore, if a...