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
Currently if the Node.js process segfaults, the connection is not closed. Once AMQP decides that it is dead, the message that caused a segfault is requeued. In many cases this will cause another worker to crash. Then another, until all are dead.
Would be better to dead-letter in this case.
The text was updated successfully, but these errors were encountered:
However, redelivery can happen because of several reason. A channel close due to being scaled down (which is expected and happens a lot with guv) will requeue just like a crash will.
So deadlettering is basically mandatory then. So maybe we should only enable this behavior for --deadletter queues.
Currently if the Node.js process segfaults, the connection is not closed. Once AMQP decides that it is dead, the message that caused a segfault is requeued. In many cases this will cause another worker to crash. Then another, until all are dead.
Would be better to dead-letter in this case.
The text was updated successfully, but these errors were encountered: