Replies: 1 comment
-
You are running into consumer timeouts - https://www.rabbitmq.com/consumers.html#acknowledgement-timeout You can increase the timeout globally or on a per-queue basis. Please see the docs. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've been using RabbitMQ for Rebus in a .NET project and I got an issue when there's a long running job in a Saga.
Enabling logging for console shows the output:
Correct if I'm wrong but it seems to be some kind of timeout when there is a long running job and I noticed it happens around every 30 minutes.
This timeout causes it to restart the current job in the Saga and the job starts all over again. It would get in an infinite loop, except that in this case it throws an exception because the data processed in the previous iteration has already been saved in the database and so it throws an exception.
I would like to, if possible, increase the time that it takes to timeout. If that's not possible, is there any way to fix this current issue?
Beta Was this translation helpful? Give feedback.
All reactions