Hi team,
I have a django application using sqlite3 and Redis as DB, uwsgi for deployment. They are all containerized with kubernetes.
Getting following error intermittently:
DAMN ! worker 4 (pid: 43510) died, killed by signal 9 :( trying respawn ... Respawned uWSGI worker 4 (new pid: 44432)
It seems unix is killing(SIGKILL signal)
How to proceed further?
Following is my uwsgi configs:
[uwsgi] http = :8000 wsgi-file = app_name/wsgi_production.py processes = 8 threads = 4 listen = 128 stats = 127.0.0.1:9191 add-header = Connection: close harakiri-verbose = true py-callos-afterfork = true reload-on-rss = 1024 worker-reload-mercy = 60
Getting lot of production issues due to this