-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
sql: identify the queuing time separately in query stats #22896
Comments
@andreimatei where is this input queue? Do you want to do this for us? Seems like you could probably knock it out more quickly than others. |
The "input queue" is the |
Any clues on what the "too many measurements" part was about? |
Maybe parsing time... although now I wouldn't argue against that one. I don't remember well; I think there was some measurements structure that was in my way when refactoring the Executor that I was hating on. |
We have marked this issue as stale because it has been inactive for |
We don't think this is necessary to track for now. |
Prior to #22277 there was no server-side input queue so queries would get executed as soon as they were reused. With #22277 now a query can stay in a queue server-side for a little while before it gets processed.
This waiting time can and should be measured and reported.
(Requested by @andreimatei )
The text was updated successfully, but these errors were encountered: