canadasatellite-ca / site

The canadasatellite.ca website (Magento 2)
https://upwork.com/fl/mage2pro
0 stars 1 forks source link

RabbitMQ slows down the server sometimes #70

Open dmitrii-fediuk opened 3 years ago

dmitrii-fediuk commented 3 years ago

01

dmitrii-fediuk commented 3 years ago

I temporary fixed it by service rabbitmq-server restart.

dmitrii-fediuk commented 3 years ago

It is because of the AMQP:

,'queue' => [
    'amqp' => ['host' => 'localhost', 'password' => 'guest', 'port' => 5672, 'user' => 'guest', 'virtualhost' => '/'],
    'consumers_wait_for_messages' => 1
]

It temporary disabled it and killed its processes:

for pid in $(ps -ef | grep "php7.2" | awk '{print $2}'); do kill -9 $pid; done
for pid in $(ps -ef | grep "php" | awk '{print $2}'); do kill -9 $pid; done

https://df.tips/t/1077