Uh oh!
There was an error while loading. Please reload this page.
[opt](cloud) Support cached cloud partition version for high frequency query - #50439
Merged
gavinchou merged 6 commits intoMay 6, 2025
Merged
Conversation
Thearas
commented
Apr 26, 2025
Contributor
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
gavinchou
commented
Apr 26, 2025
ContributorAuthor
run buildall |
gavinchou
commented
Apr 26, 2025
ContributorAuthor
run buildall |
gavinchouforce-pushed
the
gavin-opt-cloud-partition-get-version
branch
from
April 26, 2025 14:15
afed61d to
eda01ceComparegavinchou
commented
Apr 26, 2025
ContributorAuthor
run buildall |
doris-robot
commented
Apr 26, 2025
TPC-H: Total hot run time: 34544 ms |
doris-robot
commented
Apr 26, 2025
TPC-DS: Total hot run time: 193061 ms |
doris-robot
commented
Apr 26, 2025
ClickBench: Total hot run time: 29.86 s |
gavinchou
commented
Apr 26, 2025
ContributorAuthor
run buildall |
gavinchouforce-pushed
the
gavin-opt-cloud-partition-get-version
branch
from
April 26, 2025 19:32
ab071d3 to
d025c52Comparegavinchou
commented
Apr 26, 2025
ContributorAuthor
run buildall |
doris-robot
commented
Apr 26, 2025
TPC-H: Total hot run time: 34065 ms |
doris-robot
commented
Apr 26, 2025
TPC-DS: Total hot run time: 192107 ms |
doris-robot
commented
Apr 26, 2025
ClickBench: Total hot run time: 29.2 s |
Hastyshell
approved these changes
May 6, 2025
Contributor
PR approved by anyone and no changes requested. |
gavinchou
commented
May 6, 2025
ContributorAuthor
run buildall |
doris-robot
commented
May 6, 2025
TPC-H: Total hot run time: 33852 ms |
doris-robot
commented
May 6, 2025
TPC-DS: Total hot run time: 190995 ms |
doris-robot
commented
May 6, 2025
ClickBench: Total hot run time: 29.5 s |
Contributor
PR approved by at least one committer and no changes requested. |
github-actionsBot
pushed a commit
that referenced
this pull request
May 6, 2025
…y query (#50439) Support new session variable to get rid of frequent get_version request to meta-service. set `cloud_partition_version_cache_ttl_ms` with a suitable value as needed, it means a partition's version may be cached on FE at most X milliseconds. pro: reduce RPC/IO to meta-service and fdb, increase query throughput and reduce query latency (plan phase) con: visibility may be delayed when doing point query; data consistency (snapshot) may be broken when doing query wi involved multiple partitions and there is continuous data import;
koarz pushed a commit
to koarz/doris
that referenced
this pull request
Jun 4, 2025
…y query (apache#50439) Support new session variable to get rid of frequent get_version request to meta-service. set `cloud_partition_version_cache_ttl_ms` with a suitable value as needed, it means a partition's version may be cached on FE at most X milliseconds. pro: reduce RPC/IO to meta-service and fdb, increase query throughput and reduce query latency (plan phase) con: visibility may be delayed when doing point query; data consistency (snapshot) may be broken when doing query wi involved multiple partitions and there is continuous data import;
Closed
Hastyshell pushed a commit
to Hastyshell/doris
that referenced
this pull request
Jul 21, 2025
…y query (apache#50439) Support new session variable to get rid of frequent get_version request to meta-service. set `cloud_partition_version_cache_ttl_ms` with a suitable value as needed, it means a partition's version may be cached on FE at most X milliseconds. pro: reduce RPC/IO to meta-service and fdb, increase query throughput and reduce query latency (plan phase) con: visibility may be delayed when doing point query; data consistency (snapshot) may be broken when doing query wi involved multiple partitions and there is continuous data import;
csun5285 pushed a commit
to csun5285/doris
that referenced
this pull request
Sep 23, 2025
…y query (apache#50439) Support new session variable to get rid of frequent get_version request to meta-service. set `cloud_partition_version_cache_ttl_ms` with a suitable value as needed, it means a partition's version may be cached on FE at most X milliseconds. pro: reduce RPC/IO to meta-service and fdb, increase query throughput and reduce query latency (plan phase) con: visibility may be delayed when doing point query; data consistency (snapshot) may be broken when doing query wi involved multiple partitions and there is continuous data import;
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
Sign up for freeto 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.
What problem does this PR solve?
Support new session variable to get rid of frequent get_version request to meta-service.
set
cloud_partition_version_cache_ttl_mswith a suitable value as needed, it means a partition's version may be cached on FE at most X milliseconds.pro: reduce RPC/IO to meta-service and fdb, increase query throughput and reduce query latency (plan phase)
con: visibility may be delayed when doing point query; data consistency (snapshot) may be broken when doing query wi involved multiple partitions and there is continuous data import;
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)