What killed my process and why?

后端 未结 14 959
误落风尘
误落风尘 2020-11-22 09:34

My application runs as a background process on Linux. It is currently started at the command line in a Terminal window.

Recently a user was executing the application

14条回答
  •  既然无缘
    2020-11-22 10:21

    In my case this was happening with a Laravel queue worker. The system logs did not mention any killing so I looked further and it turned out that the worker was basically killing itself because of a job that exceeded the memory limit (which is set to 128M by default).

    Running the queue worker with --timeout=600 and --memory=1024 fixed the problem for me.

提交回复
热议问题