-
For a project I'm queuing jobs for days or weeks in advance. This doesn't work with SQS out of the box because of the 15 minute delay limit. Of course, I could just set the delay to 15 minutes and re-queue until the real delay has passed, but I'm just wondering if I could achieve that without needing to do that. I'd like to avoid using the database for this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There is no integration from Redis/Elasticache to trigger stuff on Lambda. And you can't run a daemon on Lambda. One option would be to run the queue worker on a server/container (not Lambda), but you can't use Elasticache as the queue if you want the worker to run on Lambda. |
Beta Was this translation helpful? Give feedback.
There is no integration from Redis/Elasticache to trigger stuff on Lambda. And you can't run a daemon on Lambda.
One option would be to run the queue worker on a server/container (not Lambda), but you can't use Elasticache as the queue if you want the worker to run on Lambda.