-
Notifications
You must be signed in to change notification settings - Fork 13
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
--block option to block until jobs have finished #103
Comments
The PBS hack way of blocking (e.g. for job id
|
Discussion re: PBS adaptivecomputing/torque#268 |
After bringing it up on the mailing list, and being pointed to that thread, it looks like there's been movement and it will be implemented. Pity clusters usually run old versions for a long time. |
Okay, let's use my hack above for now. It should work generally, I think. |
--wait is the option for sbatch |
Need this feature to fix up all the ants scripts so they play nicer with Niagara |
Job submission for blocking needs to be done via a map or other parallel object, otherwise you get sequential blocking during submission. |
PBS hack version requires #156 implemented |
At some point PBS added https://lists.gnu.org/archive/html/help-make/2017-10/msg00004.html |
Fixed by #213 |
Grid engine has the
-sync y
option that makes qsub block until the submitted job finishes (or errors out). This can be useful when writing dynamic pipelines with stages that can't be submitted all at once with dependencies (because which later stages run depend on the outputs from earlier stages).It appears PBS does not have this feature (and unsure about other platforms), but we could make our own by polling qstat.
The text was updated successfully, but these errors were encountered: