Bug #20531
closedWhen getting logs from child job to print error, distinguish between job couldn't start and non-zero exit
Description
- When the job failed with a non-zero exit code, just print stdout/stderr, no crunch-run
- When the job failed to start, only print crunch-run (we won't have stdout/stderr anyway)
- When the job failed from a signal (exit code > 127), print both
Related issues
Updated by Peter Amstutz over 1 year ago
- Story points set to 0.5
- Target version changed from Future to Development 2023-06-07
- Assigned To set to Peter Amstutz
Updated by Peter Amstutz over 1 year ago
- Status changed from New to In Progress
- Subject changed from When getting logs from child job to print error, distinguish between job couldn't start and non-zero exit to When getting logs from child job to print error, distinguish between job couldn't start and non-zero exit
Updated by Peter Amstutz over 1 year ago
20531-cwl-log-tail @ 3c0b0c7d34d015fc6d4838cd7fa00a729c1898bb
Updated by Brett Smith over 1 year ago
Peter Amstutz wrote in #note-6:
20531-cwl-log-tail @ 3c0b0c7d34d015fc6d4838cd7fa00a729c1898bb
The code is fine. Can you please add a lot more comments explaining the issue that's being fixed by the urllib3 requirement? This kind of stuff gets lost to the sands of time really quickly, so it would help future us a lot if we could look at this in a year or five and know whether the issue is still relevant. I took a quick skim of the requirements for both cwl-utils and cwltool and didn't see a direct urllib3 requirement, so while I don't doubt there's a real issue it's not even clear to me right now what it is. Thanks.
Updated by Peter Amstutz over 1 year ago
Brett Smith wrote in #note-8:
Peter Amstutz wrote in #note-6:
20531-cwl-log-tail @ 3c0b0c7d34d015fc6d4838cd7fa00a729c1898bb
The code is fine. Can you please add a lot more comments explaining the issue that's being fixed by the urllib3 requirement? This kind of stuff gets lost to the sands of time really quickly, so it would help future us a lot if we could look at this in a year or five and know whether the issue is still relevant. I took a quick skim of the requirements for both cwl-utils and cwltool and didn't see a direct urllib3 requirement, so while I don't doubt there's a real issue it's not even clear to me right now what it is. Thanks.
The basic problem is that installing with a version of pip
with the old resolver, common situation is that package X has an open ended dependency on Z, and package Y has a closed dependency on Z, but if package X is installed first, it won't downgrade to the version required by Y, so at runtime you get a dependency conflict between Y and Z.
pip
's newer resolver is smarter, but lots of end users are on older distros with older version of pip
.
So this was attempting to solve one of those situations by lifting the version constraint to the top-level package.
I think the specific situation involved cwl-utils having a constraint 'urllib3 < 2' but something else installed 'requests' with an open-ended version spec and as a result a version a later version of 'urllib3' was installed first.
Turns out as of this writing this was just fixed in upstream in the last 8 hours:
So I think the original change is no longer needed and can be reverted.
Meanwhile, a new version of cwltest was released which breaks compatibility.
https://github.com/common-workflow-language/cwltest/releases/tag/2.3.20230527113600
So I had to put in a version pin to hopefully fix testing, see note.
Updated by Peter Amstutz over 1 year ago
20531-cwl-log-tail @ 72b8fdfb21636030f2e110eb5850beb5f08bb930
Updated by Brett Smith over 1 year ago
Peter Amstutz wrote in #note-10:
20531-cwl-log-tail @ 72b8fdfb21636030f2e110eb5850beb5f08bb930
Thanks for explaining, that "fixed earlier today" thing helps me feel better about why I couldn't find the connection. What's in the branch looks good to me, but it looks like something might've changed recently to cause that test failure in Jenkins?
Updated by Peter Amstutz over 1 year ago
- Related to Idea #20521: Python tools emit logs from googleapiclient added
Updated by Peter Amstutz over 1 year ago
20531-cwl-log-tail @ 499aaaa774fc2b52057032456db5256c39b5b8ec
Sorry to pile in more things, but these all fall under the theme of improving the communication of what's an error the user needs to know about, and what isn't.
- bump cwltool and schema salad versions
- change googleapiclient log level to ERROR so we don't log retries by default
- tweak error messages related to file download
Updated by Peter Amstutz over 1 year ago
- Status changed from In Progress to Resolved