Julia program "Kllled" - Need better error message

I’m attempting to run some code on an Ubuntu 18.04 machine (Google Cloud) and my program simply dies shortly after startup after printing “Killed”. Is there some way to get a more meaningful error message to diagnose the problem?

Assuming it’s a normal linux system and if it’s actually printing “Killed” than basically no from the julia side. The message usually mean that the process is killed by an uncatchable signal (KILL) and the shell is letting you know about it. In this case, you generally need to look at system log to figure out what’s wrong (OOM for example).

It could also be a google cloud specific thing in which case, I have no idea.

1 Like