-
Notifications
You must be signed in to change notification settings - Fork 25
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
Filter out log messages about non-existing pars- reffiles #135
base: main
Are you sure you want to change the base?
Filter out log messages about non-existing pars- reffiles #135
Conversation
facf46a
to
cf43e23
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #135 +/- ##
==========================================
+ Coverage 59.15% 59.67% +0.52%
==========================================
Files 24 24
Lines 1611 1617 +6
==========================================
+ Hits 953 965 +12
+ Misses 658 652 -6 ☔ View full report in Codecov by Sentry. |
9e00d36
to
bf0dbc4
Compare
bf0dbc4
to
f495c20
Compare
Is this going to filter out also expected errors, i.e. pars- files that the pipeline expects and should be available but were not delivered yet, e.g. new steps? |
Yes, this PR silences those log messages. Lines 865 to 875 in bcb98ec
by issuing its own DEBUG log message, but CRDS itself also throws the ERROR level log message which goes unfiltered. This PR filters it. The problem is that the pipeline always expect CRDS to have pars- reffiles, even when a step doesn't or can't in the case of steps available outside of ST. From a user standpoint, it is exceedingly useless (and misleading) to get an ERROR log message that I can do nothing about. From the developer side, it's also fairly useless. Either there are pars- reffiles for the Step or not. Currently the logging at the INFO and DEBUG level issued by From a user standpoint, the difference between a pars- reffile
is not very important. The ERROR message routinely confuses users because it does not distinguish between the above 3 cases. Currently, only the last case is handled by the linked PR above in Unlike standard reference files listed via |
Another way to fix this would be to set a private |
Hmmm, maybe late-to-party? Sorry.... Starting from the ground-up.... Basic: Requesting a reftype that is non-existent is a base CRDS error. Basically, why the current situation exists. Next: This has been left this way, mainly as Nadia states. But to further explain: If anything is running in the ground system pipeline that is requesting reftypes, those reftypes should absolutely exist. So having the apparently useless-but-annoying error is useful, because it does need to be noted and taken care of. However: The point-of-view of an external developer creating new steps and the new point-of-view that there are steps that do not have parameters, or do not otherwise need the CRDS connection, does imply that something more is needed. Of the options given, there is still hesitancy in hiding the error; though I believe the code is bullet-proof enough to minimize the issue, especially if DEBUG level messages are available. However, I like the idea of making the "don't look for CRDS pars files" a more explicit condition that is under control of the step. This option I would give the thumbs-up to immediately, modulo there are not other issues with it/does not resolve the current issue. |
Thanks for your input @stscieisenhamer. I think that solution is the better one too. I will open a PR that does that, and then close this one. There's already a method to generally not load CRDS pars- reffiles globally, via an env var or command line option. I think just making that work on a per-Step basis would work. Thanks! |
This one is a tough call. Parameter ref files are a totally different breed of ref file compared to calibration reference files. It's absolutely the case that when step code says I need calibration ref file "x" and a call to find it fails, we definitely need to raise that as an error. But param ref files are completely optional. They aren't needed - just nice to have in some situations. So while it's perhaps worth noting, as information only, that no param ref file is found for a given step or pipeline, it's not an error condition. Only when a user is intentionally trying to use a param ref file and it can't be found or opened, is it considered a real error and the user needs to know that their custom params they were hoping to use were not actually used. So how do we make code smart enough to figure out the difference? The idea of a global "don't use any param ref files" switch is not very useful - you rarely want to use or not use all param ref files for a single processing run. At the same time I don't think the approach in this PR of filtering out all such messages regarding all param ref files is necessarily a good idea. Again, if the user was assuming or hoping that a particular param ref file would get used and it did not get used, they need to know about that. So perhaps the alternate approach of somehow trying to change the CRDS code itself to only raise a warning, instead of an error, when param ref files (as opposed to calibration ref files) can't be found is the better way to go? |
This fixes the issue where custom steps added through
entry_points
check for non-existing CRDSpars-
reffiles and log an error message. This PR filters out those log messages. In fact, it filters out all these missing pars- reffile log messages.Before:
With this PR:
I've added a test, but because CRDS does non-standard logging via stderr, pytest's known bug in capturing these log messages make the test not work unless you run
pytest -s
.Resolves spacetelescope/jwst#5251
And perhaps this is a better solution (and easier to maintain) than spacetelescope/crds#774