You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are having a lot of zombie processes in our process list:
root 2408 0.0 0.0 413628 2876 ? Sl Apr18 0:11 \_ /usr/bin/containerd-shim 9aa19a2252d9f05bec000dde8054f939e78159155967d9724bc13fdc95d1502f /var/run/docker/libco
bin 2435 3.0 14.2 5293812 1754428 ? Ssl Apr18 37:21 | \_ /usr/lib/jvm/java-8-openjdk-amd64/bin/java -Djava.util.logging.config.file=/opt/atlassian/bamboo/conf/loggi
bin 3434 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3480 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3514 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3522 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3635 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3658 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3683 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3705 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3725 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3738 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3770 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 3787 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 4177 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 4199 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 4813 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 4832 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 10591 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 10620 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
bin 11061 0.0 0.0 0 0 ? Z Apr18 0:00 | \_ [ssh] <defunct>
(continues for 1000s of lines).
The SSH processes are most probably created by Bamboo when it fetches Git repositories from Bitbucket.
This issue is probably related to the fact that Java is the main process in the docker container, and could easily be solved by using tini or dumb-init in the entrypoint script.
The text was updated successfully, but these errors were encountered:
Having seen this problem in our environment, I'm putting together a fix for this. It is based on top of my fix for #4, so I need/want to wait to see what happens to it before I push this one.
@cguentherTUChemnitz I created a PR and withdrew it again as the "proper init process" is already part of docker and docker-compose since 1.13.0: see comment here #7
We are having a lot of zombie processes in our process list:
(continues for 1000s of lines).
The SSH processes are most probably created by Bamboo when it fetches Git repositories from Bitbucket.
This issue is probably related to the fact that Java is the main process in the docker container, and could easily be solved by using tini or dumb-init in the entrypoint script.
The text was updated successfully, but these errors were encountered: