-
Notifications
You must be signed in to change notification settings - Fork 5
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
Batchless job manager #50
Conversation
This is broken somehow, when --batchless is specified everything becomes a zombie, contrast first vs second run below:
|
The reason it fails in that way is that the ps command hangs for sufficiently large output, and then the timeout kills it. On ML8 currently, the full ps output is about 2000 lines, 150KB of text. Even with a timeout of 100s this output is not properly processed. It could look like the workaround in command.rs is not appropriate or sufficient. |
A job manager that computes a job ID from the process tree, useful if there is no queue system being used (eg UiO ML-nodes and light-HPC).