|
|
|
|
|
by otterley
3730 days ago
|
|
I'm a bit concerned that you're relying on RedisMQ for buffering. Redis is an in-memory store with optional persistence, but having persistence doesn't make it a log-structured system like Kafka. You still have to make sure you don't run out of memory. This greatly limits its ability to buffer messages. It would have been much better IMHO to utilize an on-disk buffer instead, like syslog-ng PE does. |
|