We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe:
Currently, SLOW_QUERY only support to query data that parse from current slow-log file, can't query data from the rotated slow-log file.
SLOW_QUERY
Describe the feature you'd like:
To make SLOW_QUERY support query slow log at any time, need to do:
Next
Describe alternatives you've considered:
compatibility
If user doesn't specified the query time range, only parse the current slow-log file, this behaviour is the same as before.
Teachability, Documentation, Adoption, Migration Strategy:
The development of this feature can be divided into the following steps:
dataForSlowLog
executor
CLUSTER_SLOW_QUERY
The text was updated successfully, but these errors were encountered:
crazycs520
No branches or pull requests
Feature Request
Is your feature request related to a problem? Please describe:
Currently,
SLOW_QUERY
only support to query data that parse from current slow-log file, can't query data from the rotated slow-log file.Describe the feature you'd like:
To make
SLOW_QUERY
support query slow log at any time, need to do:Next
to get a chunk ofSLOW_QUERY
data to avoid oom.Describe alternatives you've considered:
compatibility
If user doesn't specified the query time range, only parse the current slow-log file, this behaviour is the same as before.
Teachability, Documentation, Adoption, Migration Strategy:
The development of this feature can be divided into the following steps:
Next
to get a chunk ofSLOW_QUERY
data to avoid oom. MovedataForSlowLog
function toexecutor
pkg.SLOW_QUERY
support query slow log at any time.CLUSTER_SLOW_QUERY
support query slow log at any time.The text was updated successfully, but these errors were encountered: