-
Notifications
You must be signed in to change notification settings - Fork 64
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
engine: remove implicit fallback #518
Conversation
df6e098
to
f13566a
Compare
f13566a
to
d7e66d4
Compare
Signed-off-by: Michael Hoffmann <[email protected]>
d7e66d4
to
479ebed
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Looks good, just small doc comment
@@ -6,7 +6,7 @@ The project is currently under active development. | |||
|
|||
## Roadmap | |||
|
|||
The engine intends to have full compatibility with the original engine used in Prometheus. Since implementing the full specification will take time, we aim to add support for most commonly used expressions while falling back to the original engine for operations that are not yet supported. This will allow us to have smaller and faster releases, and gather feedback on a regular basis. Instructions on using the engine will be added after we have enough confidence in its correctness. | |||
The engine intends to have full compatibility with the original engine used in Prometheus. Since implementing the full specification will take time, we aim to add support for most commonly used expressions. Instructions on using the engine will be added after we have enough confidence in its correctness. If the engine encounters an expression it does not support it will return an error that can be tested with `engine.IsUnimplemented(err)`, the calling code is expected to handle this fallback. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm I wonder if we can use some other term than "confidence in its correctness". I think the tests speak to that :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, lgtm. We should not forget to update Thanos and move the fallback there.
What to do in cases where this engine does not understand the query should be decided in the calling code. Taking this responsibility of the engine also forces us to deal with queries that we do not understand explicitly in acceptance tests ( by skipping them ) without accidentally falling back.
It also makes the code and test surface a bit smaller for the engine.