-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[feature](information_schema) add rowsets table into information_s…
#11266
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yiguolei
requested changes
Jul 28, 2022
Contributor
yiguolei
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will review this pr.
3cbcdef to
239087d
Compare
yiguolei
reviewed
Aug 8, 2022
fe/fe-core/src/main/java/org/apache/doris/planner/SingleNodePlanner.java
Outdated
Show resolved
Hide resolved
yiguolei
reviewed
Aug 8, 2022
yiguolei
reviewed
Aug 8, 2022
yiguolei
reviewed
Aug 8, 2022
yiguolei
reviewed
Aug 8, 2022
fe/fe-core/src/main/java/org/apache/doris/catalog/SchemaTable.java
Outdated
Show resolved
Hide resolved
rowsets table into information_s…
yiguolei
approved these changes
Aug 9, 2022
Contributor
yiguolei
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Merged
16 tasks
924060929
added a commit
that referenced
this pull request
May 9, 2025
…one backend's data (#50721) fix backend_active_tasks table only return one backend's data, for example: ```sql select sum(SCAN_ROWS), sum(SCAN_BYTES) from backend_active_tasks where QUERY_ID = 'd299cb2156ef4870-aea578938f703503' ``` the root cause is: the partition column `be_id` has be pruned, and can not get scan ranges from multiple backends, this bug is introduced by #11266
github-actions bot
pushed a commit
that referenced
this pull request
May 9, 2025
…one backend's data (#50721) fix backend_active_tasks table only return one backend's data, for example: ```sql select sum(SCAN_ROWS), sum(SCAN_BYTES) from backend_active_tasks where QUERY_ID = 'd299cb2156ef4870-aea578938f703503' ``` the root cause is: the partition column `be_id` has be pruned, and can not get scan ranges from multiple backends, this bug is introduced by #11266
github-actions bot
pushed a commit
that referenced
this pull request
May 9, 2025
…one backend's data (#50721) fix backend_active_tasks table only return one backend's data, for example: ```sql select sum(SCAN_ROWS), sum(SCAN_BYTES) from backend_active_tasks where QUERY_ID = 'd299cb2156ef4870-aea578938f703503' ``` the root cause is: the partition column `be_id` has be pruned, and can not get scan ranges from multiple backends, this bug is introduced by #11266
koarz
pushed a commit
to koarz/doris
that referenced
this pull request
Jun 4, 2025
…one backend's data (apache#50721) fix backend_active_tasks table only return one backend's data, for example: ```sql select sum(SCAN_ROWS), sum(SCAN_BYTES) from backend_active_tasks where QUERY_ID = 'd299cb2156ef4870-aea578938f703503' ``` the root cause is: the partition column `be_id` has be pruned, and can not get scan ranges from multiple backends, this bug is introduced by apache#11266
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
…chema
Proposed changes
Issue Number: close #xxx
Problem Summary:
In some cases, we would like to check the status of
rowsets. So I add therowsetstable into information_schema database .The table schema of
rowsetsis:and then we can search
rowsetsinfo fromrowsetstable, like this:Checklist(Required)
Further comments
If this is a relatively large or complex change, kick off the discussion at dev@doris.apache.org by explaining why you chose the solution you did and what alternatives you considered, etc...