-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
[Optimization](statistics) optimize Incremental statistics collection and statistics cleaning #18971
Conversation
run buildall |
TeamCity pipeline, clickbench performance test result: |
cea7318
to
2f1e1f9
Compare
fe/fe-core/src/main/java/org/apache/doris/statistics/AnalysisManager.java
Outdated
Show resolved
Hide resolved
fe/fe-core/src/main/java/org/apache/doris/statistics/StatisticsRepository.java
Outdated
Show resolved
Hide resolved
fe/fe-core/src/main/java/org/apache/doris/statistics/StatisticsRepository.java
Outdated
Show resolved
Hide resolved
1e8ad51
to
93c73b1
Compare
PR approved by anyone and no changes requested. |
93c73b1
to
2285d36
Compare
1fc5a3b
to
837cb2f
Compare
837cb2f
to
c4effda
Compare
run buildall |
PR approved by at least one committer and no changes requested. |
…istics cleaning (apache#18971) This pr mainly optimizes the following items: - the collection of statistics: clear up invalid historical statistics before collecting them, so as not to affect the final table statistics. - the incremental collection of statistics: in the case of incremental collection, only the corresponding partition statistics need to be collected. TODO: Supports incremental collection of materialized view statistics.
…istics cleaning (apache#18971) This pr mainly optimizes the following items: - the collection of statistics: clear up invalid historical statistics before collecting them, so as not to affect the final table statistics. - the incremental collection of statistics: in the case of incremental collection, only the corresponding partition statistics need to be collected. TODO: Supports incremental collection of materialized view statistics.
Proposed changes
This pr mainly optimizes the following items:
TODO: Supports incremental collection of materialized view statistics.
Issue Number: close #xxx
Problem summary
Describe your changes.
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...