Replies: 3 comments 5 replies
-
|
Beta Was this translation helpful? Give feedback.
-
@lukebakken For logging on RabbitMQ Startup -- Are yo referring to this logs |
Beta Was this translation helpful? Give feedback.
-
@michaelklishin [ec2-user@ip rabbitmq]$ sudo systemctl stop rabbitmq-server.service [ec2-user@ip rabbitmq]$ sudo systemctl start rabbitmq-server.service |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
RabbitMQ Version - 3.12.x
Trying to tune the following parameters running on defaults
1.Channel Operation Timeout
sudo rabbitmqctl environment | grep "channel_operation_timeout"
{channel_operation_timeout,15000},
2.Consumer Prefetch
sudo rabbitmqctl environment | grep "default_consumer_prefetch"
{default_consumer_prefetch,{false,0}},
Reproduction steps
1.Tune Channel Operation Timeout
File - rabbitmq.conf
channel_operation_timeout = 60000
2.Tune consumer prefetch
File - advanced.conf
[
{rabbit, [
{default_consumer_prefetch,{false,250}}
]
}
]
3.rabbitmqctl stop_app , rabbitmqctl start_app
...
Expected behavior
1.Run "rabbitmqctl environment"
2.Confirm the new settings for Channel Operation Timeout and Consumer Prefetch
{channel_operation_timeout,60000}
{default_consumer_prefetch,{false,250}}
Additional context
I am still seeing the defaults and not seeing any tuned settings being applied
Run "rabbitmqctl environment"
{channel_operation_timeout,15000},
{default_consumer_prefetch,{false,0}}
Beta Was this translation helpful? Give feedback.
All reactions