Hello,
We are developing an application for Windows 8,1 devices that uses a local RabbitMQ instance for communication with other local applications.
After a sleep or hibernate state of the OS, the Erlang process uses a lot of CPU power for a couple of minutes which causes RabbitMQ not to process any messages.
I found the problem is caused because Erlang tries to execute all the ticks that needed to be executed during the sleep/hibernate state of the OS.
It becomes a big problem if our devices have gone to sleep for about a weekend. The Erlang process needs 15 minutes to return to it's normal state.
We are using RabbitMQ 3.3.5, Erlang version 17.
Is there a possible solutions to this problem?
Thanks in advance,
Kristof Vervaeck