Hi Serverless community !
Thanks for creating and sharing this beautiful piece of work and wisdom.
I recently started working with the serverless framework, and we are using it internally to remove celery
and redis
with dynamo db streams
and lambda
functions.
The problem we face is that we need to deploy the function every time we make the changes, and then trigger an action in order for the stream to be generated and the function to be called.
- Is there a faster way to do this ? (Preferably, locally, without deploying each time)
- Is there a way to configure a local dynamo db stream as a trigger event in serverless.yml ?
- The ideal way we’d want it, is a terminal running the lambda, which gets called each time we make changes to the local dynamo db and updates itself, whenever we change the lambda code.
We have checked solutions like dynamo-db-local plugin, but haven’t yet found support for streams.
Any help, thoughts or opinions will be greatly appreciated !
Regards.