-
Notifications
You must be signed in to change notification settings - Fork 441
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
Don't rescue signals when running experiments #61
Conversation
`rescue Object` is equivalent to `rescue Exception`, which will catch signals and other messages which shouldn't be silenced during an experiment. See github#60
Thanks for the contribution. I believe the intent here is different: when running an experiment, all exceptions in candidate code -- no matter the type or origin -- are to be captured to ensure that code being measured does not inadvertently affect control code. Allowing signals in candidate code to bubble up and affect control code would be undesirable. cc @jbarnette @zerowidth @jesseplusplus -- correct me if I'm misunderstanding where/how this is being applied |
I'm siding with @djrodgerspryor on this one. Signals are an out-of-band mechanism and shouldn't be raised by normal code. Even |
Slept on it ... If I'm not misunderstanding this (entirely possible), this is the exception wrapper around running candidate code paths in an experiment. It might also be for both control and candidate code paths. If it's for control, I believe control should ultimately re-raise (as per its normal behavior) any exceptions. But in the scenario where we run the control path and it raises no exception, and we run a candidate path and it throws |
@rick I see what you mean with Looking at the ruby exception hierarchy and drawing an internal/external distinction, what do you think about rescuing |
I keep spiraling in and out of orbit, here on the next low-🌎 pass: So, if we're running an experiment and the control path throws no exceptions, but the candidate path throws It may be difficult to know what the right behavior is from the point of view of the scientist library. I'm not the biggest fan of adding checkboxes. A couple of thoughts:
In the latter world I'd feel more comfortable keeping things locked down (i.e., neuter every exception in the candidate code) and allowing overriding, with decently documented examples of things one might override in the README. |
Yeah, I think making this configurable is a decent idea. But even if we do decide that the default should change it needs to stay until a |
@jbarnette: great idea. What do you think about: Scientist.rescues # => [Object]
# with
rescue *rescues => e
# ... as an overrideable default? That wouldn't require a version 2.0, and we can change the default rescues when we do look for a 2.0 release. |
Then the core abstraction of scientist is leaky because it's quite likely that your process's memory is corrupted in a way which can't be monitored or controlled at the level of the experiment.
I'm not sure if it needs to be configurable: rescuing Our real-world surprise came from processes failing to gracefully shutdown because the SIGTERM was received during an experiment. I'm pretty convinced that users would find bubbling SIGFPE, If changing the default is too scary before 2.0, then I think updated docs with an example handling method which raises everything except |
👋 I wanna voice support for making scientist configurable to not rescue signals in an experiment. We are looking at using Scientist at my company, and because of this as a potential security risk, we are not able to use this gem. Thanks for all the awesome work. |
@strand Out of ongoing curiosity -- could you give some more insight on the sort of real-world use cases that configurability here would help with? |
This is a little secondhand on my part, @descentintomael, please clarify our concerns if I got anything wrong. Our app needs to meet strict security requirements. A general assumption that we have is that should a SIGTERM be received we will shut down the application, and this error handling has the potential to cause the app to continue running after a critical failure. While we don't plan to run unsafe code in experiments, we do assume any unsafe code will be handled appropriately, and unfortunately, Scientist isn't doing this. Because of this, we're concerned that some potentially unsafe code could be executed in an experiment and cause the app to remain running in that broken state. |
@strand You can write your own error handler and re-raise all non-StandardErrors right now; that's what we've done too. |
i don't know |
I added a seam in #69, we'll change the default in 2.0.0. |
rescue Object
is equivalent torescue Exception
, which will catch signals and other messages which shouldn't be silenced during an experiment.See #60