Comment 4 for bug 1551667

Revision history for this message
Luis Pigueiras (lpigueiras) wrote :

@nprivalova Your suggestion doesn't solve anything in my case because it fills completely the RAM too (but slower than with 64). If for some reason the database is not working or it is too slow, I don't want the collector to read messages until it crashes...

@chungg I'm using RabbitMQ with the following configuration, so not sure that this commit will solve anything for me :(

[
  {rabbit, [
    {cluster_nodes, {['XXXXXX', 'YYYYYY'], disc}},
    {cluster_partition_handling, ignore},
    {tcp_listen_options,
         [binary,
         {packet, raw},
         {reuseaddr, true},
         {backlog, 128},
         {nodelay, true},
         {exit_on_close, false}]
    },
    {reverse_dns_lookups, true},
    {default_user, ...},
    {default_pass, ...}
  ]},
  {kernel, [
    {inet_dist_listen_max, 41055},
    {inet_dist_listen_min, 41055}
  ]}
,
  {rabbitmq_management, [
    {listener, [
      {port, XXXX}
    ]}
  ]}
].