What killed my process and why?

后端 未结 14 961
误落风尘
误落风尘 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 09:59

    In an lsf environment (interactive or otherwise) if the application exceeds memory utilization beyond some preset threshold by the admins on the queue or the resource request in submit to the queue the processes will be killed so other users don't fall victim to a potential run away. It doesn't always send an email when it does so, depending on how its set up.

    One solution in this case is to find a queue with larger resources or define larger resource requirements in the submission.

    You may also want to review man ulimit

    Although I don't remember ulimit resulting in Killed its been a while since I needed that.

提交回复
热议问题