File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 252252
253253## Fraction of the high watermark limit at which queues start to
254254## page message out to disc in order to free up memory.
255+ ## For example, when vm_memory_high_watermark is set to 0.4 and this value is set to 0.5,
256+ ## paging can begin as early as when 20% of total available RAM is used by the node.
255257##
256- ## Values greater than 0.9 can be dangerous and should be used carefully.
258+ ## Values greater than 1.0 can be dangerous and should be used carefully.
259+ ##
260+ ## One alternative to this is to use durable queues and publish messages
261+ ## as persistent (delivery mode = 2). With this combination queues will
262+ ## move messages to disk much more rapidly.
263+ ##
264+ ## Another alternative is to configure queues to page all messages (both
265+ ## persistent and transient) to disk as quickly
266+ ## as possible, see http://www.rabbitmq.com/lazy-queues.html.
257267##
258268# vm_memory_high_watermark_paging_ratio = 0.5
259269
You can’t perform that action at this time.
0 commit comments