-
Notifications
You must be signed in to change notification settings - Fork 4
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
optimize the optimizer #6
Comments
on this guy we save about 400ms that is quite nice After before optimizing the optimizer:
After:
|
probably want to take total length into account for short queries (number of points per series) deduplication is a lot less important then for long queries but that needs some decent heuristics. |
optimizer is re-written this should solves hits. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Right now DQE always tries to dedublicate the query, with large queries this in itself is expensive, a better way might be to only do that when we have a decent ammount (10%?) of doublicated get's (this is easy to determin in the flattened form.
The text was updated successfully, but these errors were encountered: