=WARNING REPORT== file descriptor limit alarm set. means that your reach the filedescriptor limit.
You should tuning your O.S. and RabbitMQ.
Here a few link you should follow:
Open File Handles Limit Operating systems limit maximum number of
concurrently open file handles, which includes network sockets. Make
sure that you have limits set high enough to allow for expected number
of concurrent connections and queues.
Make sure your environment allows for at least 50K open file
descriptors for effective RabbitMQ user, including in development
environments.
As a rule of thumb, multiple the 95th percentile number of concurrent
connections by 2 and add total number of queues to calculate
recommended open file handle limit. Values as high as 500K are not
inadequate and won't consume a lot of hardware resources, and
therefore are recommended for production setups. See Networking guide
for more information.
Erlang VM I/O Thread Pool Erlang runtime uses a pool of threads for
performing I/O operations asynchronously. The size of the pool is
configured via the +A VM command line flag, e.g. +A 128. We highly
recommend overriding the flag using the
RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS environment variable:
RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS="+A 128" Default value is 30.
Nodes that have 8 or more cores available are recommended to use
values higher than 96, that is, 12 or more I/O threads for every core
available. Note that higher values do not necessarily mean better
throughput or lower CPU burn due to waiting on I/O. Tuning for a Large
Number of Connections
Some workloads, often referred to as "the Internet of Things", assume
a large number of client connections per node, and a relatively low
volume of traffic from each node. One such workload is sensor
networks: there can be hundreds of thousands or millions of sensors
deployed, each emitting data every several minutes. Optimising for the
maximum number of concurrent clients can be more important than for
total throughput.
Several factors can limit how many concurrent connections a single
node can support:
Number of open file handles (including sockets) Amount of RAM used by
each connection Amount of CPU resources used by each connection
Hope it helps