-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Calculate per query statistics #263
Comments
I have implemented EXPLAIN command that works with any SELECT queries Example:
Will return: shard_local says if query was executed on a local server or through remote call Other example:
Result: It can already give some interesting data - like how come empty shard has appeared or that LIMIT clause works per shard... To an extent this depends on work I did for #294 At the moment it is collecting data from QueryEngine, but I am not sure if data for other engines that participate in SELECT query could be useful Do you think I should continue with this? |
Yeah, looks great. Not sure we need the other engines to produce stats. As long as we see the same metrics regardless of query, which I think it will because at some point it goes through the engine? Can you push to a branch and submit a PR so we can have a look? |
want!! |
+1 |
closing in favor of #2044 |
More specifically, for a given select query:
The text was updated successfully, but these errors were encountered: