Sidekiq process dies silently

I have a droplet of 2 GB on Digital Ocean and everything seems to work until the last week, and suddenly my side processes seem to disappear, making everyone work. I also have SWAP memory enabled. Is there a way to make sure it is out of memory before I start and update the server.

History of the last 30 days

enter image description here

+4


source to share


1 answer


If memory was the cause, then perhaps the Linux OOM killer killed the process. You can confirm that using



grep -i 'killed process' /var/log/messages
- or -
dmesg | egrep -i 'killed process'

      

0


source







All Articles