What is the best way to get the job failure errstr without using wait
?
#3496
-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The https://github.com/flux-framework/flux-core/blob/master/src/modules/job-manager/wait.c#L72 The string itself is informational and is not meant to be part of job provenance, since it can be recreated from the A similar message (probably not exactly the same) is returned by
|
Beta Was this translation helpful? Give feedback.
The
errstr
is not stored anywhere, but is created by the job manager as it responds to a wait request when the job has exited.https://github.com/flux-framework/flux-core/blob/master/src/modules/job-manager/wait.c#L72
The string itself is informational and is not meant to be part of job provenance, since it can be recreated from the
finish
event status.A similar message (probably not exactly the same) is returned by
flux job status
by processing the eventlog, e.g: