Can NATS keep messages in memory if no workers are online at the moment (producer-consumers pattern)?

1k Views Asked by At

I would like to use NATS to distribute tasks among several worker-processes. Everything works as expected if I have at least one worker "online", but if there are no worker-processes, messages are just thrown away, when I turn on one worker I got no messages (which were created when it was not online).

I know how to do it with RabbitMQ, but is it possible to do it with NATS?

I do project in Python, producer-process in aiohttp, worker-processes are also in Python and do some CPU-heavy tasks.

2

There are 2 best solutions below

0
On BEST ANSWER

By this day official Python connector does not support NATS/Jetsream issue-209

4
On

Are you familiar with JetStream? JetStream retains messages so they can be replayed. You can configure your stream to only discard the message once it's been acknowledged. Not sure what the state of python client is in regard to JetStream, I know it it being worked on. https://github.com/nats-io/nats.py