Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default consumer_timeout in docs to 30 minutes #1224

Merged
merged 1 commit into from
Jul 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions site/consumers.md
Original file line number Diff line number Diff line change
Expand Up @@ -390,16 +390,16 @@ This helps detect buggy (stuck) consumers that never acknowledge deliveries.
Such consumers can affect node's on disk data compaction and potentially drive
nodes out of disk space.

If a consumer does not ack its delivery for more than the timeout value (15 minutes by default),
If a consumer does not ack its delivery for more than the timeout value (30 minutes by default),
its channel will be closed with a `PRECONDITION_FAILED` channel exception.
The error will be [logged](logging.html) by the node that the consumer was
connected to.

The timeout value is configurable in [`rabbitmq.conf`] (in milliseconds):

<pre class="lang-ini">
# 15 minutes in milliseconds
consumer_timeout = 900000
# 30 minutes in milliseconds
consumer_timeout = 180000
</pre>

<pre class="lang-ini">
Expand Down