You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ The project is currently under active development.
6
6
7
7
## Roadmap
8
8
9
-
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.
9
+
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.
10
10
11
11
The following table shows operations which are currently supported by the engine
// LogicalOptimizers are optimizers that are run if the value is not nil. If it is nil then the default optimizers are run. Default optimizer list is available in the logicalplan package.
57
60
LogicalOptimizers []logicalplan.Optimizer
58
61
59
-
// DisableFallback enables mode where engine returns error if some expression of feature is not yet implemented
60
-
// in the new engine, instead of falling back to prometheus engine.
61
-
DisableFallbackbool
62
-
63
62
// ExtLookbackDelta specifies what time range to use to determine valid previous sample for extended range functions.
0 commit comments