Update the qstat job completion checks#541
Merged
apcraig merged 1 commit intoCICE-Consortium:mainfrom Sep 10, 2025
Merged
Conversation
set qstatus = `${ICE_MACHINE_QSTAT} $job | grep $job | wc -l`
Some recent changes made the return status of "${ICE_MACHINE_QSTAT} $job"
no longer robust as a way to check if a job was in the queue or not.
eclare108213
approved these changes
Sep 10, 2025
dabail10
approved these changes
Sep 10, 2025
Contributor
dabail10
left a comment
There was a problem hiding this comment.
Does this fix the hangs?
Contributor
Author
TBD, it helps with the testing costs, but there is still an issue with jobs hanging for me. The cice8yr case I did a couple weeks was just a standard run, no test scripts. That is not fixed with this change. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR checklist
Update the qstat job completion checks
apcraig
Full Icepack test suite run on derecho intel, bit-for-bit and all tests passed.
Update the qstat job completion checks to use
set qstatus =
${ICE_MACHINE_QSTAT} $job | grep $job | wc -lSome recent changes made the return status of "${ICE_MACHINE_QSTAT} $job" no longer robust as a way to check if a job was in the queue or not.