You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please allow the option to set messages to be persistent on the amqp output plugin.
Current behavior:
Messages are not persistent and are lost when a broker restarts
Desired behavior:
Messages are retained on the broker until they are processed
Use case: [Why is this important (helps with prioritizing requests)]
When batch loading large amounts of messages (logparser messages to be precise), the messages are very large and take a while to process. On occasion, the broker will run out of memory and crash. All messages are lost and have to be reprocessed.
The text was updated successfully, but these errors were encountered:
Making the queue durable just means the queue itself survives a broker restart, not the messages. Messages need to be put on the queue with a DeliveryMode of 2 to make them persistent. Currently 1 is the default (transient).
Feature Request
Proposal:
Please allow the option to set messages to be persistent on the amqp output plugin.
Current behavior:
Messages are not persistent and are lost when a broker restarts
Desired behavior:
Messages are retained on the broker until they are processed
Use case: [Why is this important (helps with prioritizing requests)]
When batch loading large amounts of messages (logparser messages to be precise), the messages are very large and take a while to process. On occasion, the broker will run out of memory and crash. All messages are lost and have to be reprocessed.
The text was updated successfully, but these errors were encountered: