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 236236
237237 % % Fraction of the high watermark limit at which queues start to
238238 % % page message out to disc in order to free up memory.
239+ % % For example, when vm_memory_high_watermark is set to 0.4 and this value is set to 0.5,
240+ % % paging can begin as early as when 20% of total available RAM is used by the node.
239241 % %
240- % % Values greater than 0.9 can be dangerous and should be used carefully.
242+ % % Values greater than 1.0 can be dangerous and should be used carefully.
243+ % %
244+ % % One alternative to this is to use durable queues and publish messages
245+ % % as persistent (delivery mode = 2). With this combination queues will
246+ % % move messages to disk much more rapidly.
247+ % %
248+ % % Another alternative is to configure queues to page all messages (both
249+ % % persistent and transient) to disk as quickly
250+ % % as possible, see http://www.rabbitmq.com/lazy-queues.html.
241251 % %
242252 % % {vm_memory_high_watermark_paging_ratio, 0.5},
243253
You can’t perform that action at this time.
0 commit comments