serverless-plugin-offline-dynamodb-stream
serverless-plugin-offline-dynamodb-stream copied to clipboard
Serverless Plugin for emulating dynamodb stream triggering lambda functions offline
I have a Lambda set up with filter patterns with something like: ` events: - stream: type: dynamodb batchSize: 1 maximumRetryAttempts: 1 arn: ${self:custom.table.streamArn} filterPatterns: - eventName: [ INSERT ]...
Hello, I really appreciate this plugin, but currently experience an issue when no environment variables for the AWS credentials are set. After `sls offline start` the 5 seconds timeout occurs...
I'm wondering if this plugin support Python functions or not, because it's seems not working in my project (Python based)
When the `custom` section of the serverless.yml file extracted to an external file like so ``` custom: ${file(./env.${self:provider.stage}.yml)} ``` the config file fails to load the configuration for this plugin.
Hi, thanks for building this. I'm hoping I can get it working. My local setup is trying to call lambda from dynamodb stream. I'm using this in conjunction with serverless-offline...
Hello! I noticed that eventSourceARN is missing in event, but in some cases it's crucial field. Is it possible to add this field?
Hey, thanks for creating this plugin! I started using this, as i needed dynamodb streams to work locally in combination with `serverless-dynamodb-local` and `serverless-offline`. It works fine as long is...
Good day! I wrote some tests. My tests are async functions. But I see that the only one of them provides streams. I don't any streams from another. This seems...
After that the lambda is not getting invoked in the update and insert
Firstly congratulation! I'm working on a POC where I'm using node + typescript + serverless. I'm with the same problem related here: [Crashes when starting offline]( https://github.com/orchestrated-io/serverless-plugin-offline-dynamodb-stream/issues/3) But I believe...