Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatically detect and delete dangling nextflow pods #1

Open
bentsherman opened this issue Oct 27, 2019 · 0 comments
Open

Automatically detect and delete dangling nextflow pods #1

bentsherman opened this issue Oct 27, 2019 · 0 comments
Assignees

Comments

@bentsherman
Copy link
Member

When running nextflow on kubernetes, nextflow should be able to clean up it's worker pods if it terminates. However there seem to be some edge cases where it doesn't clean everything up, and the worker pods persist after the submitter pod has terminated.

I've written some bash code to detect these pods and delete them via kubectl:

PODS=$(kubectl get pods --no-headers | grep 'nf-' | awk '{ print $1 }')

for POD in ${PODS}; do
        RUN_NAME=$(kubectl get pod --output 'jsonpath={.metadata.labels.runName}' ${POD})

        kubectl get pod --no-headers ${RUN_NAME} > /dev/null

        if [[ $? != 0 ]]; then
                kubectl delete pod ${POD}
        fi
done

I think we could add this to kube-clean.sh, but I'm afraid that this code could be pretty destructive if any errors occur with kubectl itself. So I'd like to find a more robust way to determine whether the submitter pod still exists.

Also, we should think about whether this code could be automated, maybe with a CronJob?

@bentsherman bentsherman self-assigned this Oct 28, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant