How to abort a driver program elegant?

Almost every time abort a program using Ctrl + C or kill -9 PID, it will create some very large core dump files.

Hey @crystalww,

I think this is not a Ray issue, but rather having your shell configured to automatically dump core upon non-graceful exit – try https://stackoverflow.com/a/775996 to disable this (ulimit -c 0).

1 Like