Reputation: 222
I use rabbitmq-server-3.6.1.
It seems there are two options how to set synchronization batch size. First one is policy option "ha-sync-batch-size". It is described in RabbitMQ documentation here. Second one is configuration file option "mirroring_sync_batch_size", which I cannot find described anywhere and do not understand from RabbitMQ source code how it works.
The question is related to the mirroring synchronisation and consists of several subquestions:
Thanks in advance for your answers.
Upvotes: 4
Views: 2160
Reputation: 381
mirroring_sync_batch_size
configuration variable is used as default value if no policy is set.
mirroring_flow_control
option enables or disables flow control mechanism between channel and mirror slave processes. Flow control is described in this blog post
Upvotes: 3