|
|
|
|
|
by edgurgel
3752 days ago
|
|
OTP won't out of the box persist jobs that you want to guarantee that it will run.
It won't also retry and it can't schedule jobs to happen in the future. Unless you are willing to lose the jobs that are just in memory you can simply use Task and send messages. RabbitMQ also does not handle retries with backoff, scheduled jobs, etc. Disclaimer: maintainer here. Edit: I added the "with backoff" to not mix with automatic reenqueue if you reject a message from a Rabbitmq consumer. |
|
Is there a compelling reason to add an additional piece of tech in my stack?