I have a docker container that I can excecute fine locally. Yet when run on a mesos cluster, I get SIGTERMS
/usr/my_script.sh: line 57: 310 Killed xsltproc sort.xsl ${2} > ${2}_bat
W0703 09:09:54.465442 5074 logging.cpp:91] RAW: Received signal SIGTERM from process 2262 of user 0; exiting
I don't understand where this problem is comming from and how to best debug it. How can I find out what's killing my container?
I tried increasing the RAM of the container available to over 4GB, yet to no avail. Furthermore, according to /usr/bin/time -v xsltproc sort.xsl offending_file.xml > sortedFile.xml
the process should only consume 1GB RAM.
I also tried googling for the error output of W0703
and 5074 logging.cpp:91
, yet to no avail. It also begs the question why the container has no problem executing the command when run locally.