--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Also, the `rabbit.vm_memory_high_watermark` does not limit how much memory the runtime can possibly allocate.It's a value that, when exceeded, will trigger a resource alarm [1].Erlang VM allocators can allocate larger or smaller chunks at once. There is absolutely no relation tothe high VM watermark RabbitMQ uses.
On Mon, Oct 23, 2017 at 6:03 PM, Ilya Smirnov <ilya...@gmail.com> wrote:
Hello,during the RabbitMQ 3.7.0 tests with our load(6k connections, 12k channels, 3k exch, 12r queues, 70k erlang proc.), we are faced with the problem of memory allocation. After 1-2 hours, the memory consumption increases several times and exceeds the available size, after which the node falls.Memory configuration:{ vm_memory_high_watermark, 0.48 },{ vm_memory_high_watermark_paging_ratio, 1.1 },{ vm_memory_calculation_strategy, rss },[info] <0.332.0> Memory high watermark set to 5686 MiB (5962906337 bytes) of 11847 MiB (12422721536 bytes) total(We use lazy queues, so we decided to turn off paging, is it correct?)I found in manual - "Erlang's garbage collector can, in the worst case, cause double the amount of memory to be used"State from crashdump:On these screens, you can see that the node has fallen during an attempt to allocate memory in excess of what is available and > then 0.48*2.Is this behavior erroneous? Or is it a configuration error?Thank you in advance.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Thanks,
Sebastian