-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
[feature](ES Catalog)Support control scroll level by config #37180
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
d953593
to
5665dcb
Compare
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
TPC-H: Total hot run time: 39709 ms
|
TPC-DS: Total hot run time: 172748 ms
|
ClickBench: Total hot run time: 30.35 s
|
run external |
run p0 |
5665dcb
to
957e05e
Compare
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
TPC-H: Total hot run time: 39651 ms
|
TPC-DS: Total hot run time: 172839 ms
|
ClickBench: Total hot run time: 30.4 s
|
1. Add config `enable_es_shard_scroll`, default true.
957e05e
to
6de7a2d
Compare
run buildall |
6de7a2d
to
f51e1e3
Compare
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
1 similar comment
clang-tidy review says "All clean, LGTM! 👍" |
TPC-H: Total hot run time: 40724 ms
|
TPC-DS: Total hot run time: 171883 ms
|
ClickBench: Total hot run time: 30.48 s
|
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
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
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
…7180) ## Proposed changes 1. Add session variable `enable_es_parallel_scroll`, default true. When it's false, Doris will send a scroll query to ES by one backend without shard preference and sort info. Which equals to call the search api directly of ES and it's very useful when you need a global sorting based on scores. 2. Print ES response body when http request is not OK.
…7180) ## Proposed changes 1. Add session variable `enable_es_parallel_scroll`, default true. When it's false, Doris will send a scroll query to ES by one backend without shard preference and sort info. Which equals to call the search api directly of ES and it's very useful when you need a global sorting based on scores. 2. Print ES response body when http request is not OK.
## Proposed changes 1. Add session variable `enable_es_parallel_scroll`, default true. When it's false, Doris will send a scroll query to ES by one backend without shard preference and sort info. Which equals to call the search api directly of ES and it's very useful when you need a global sorting based on scores. 2. Print ES response body when http request is not OK.
1. Add json type mapping apache/doris#37101 2. Add session instruction `enable_es_parallel_scroll` and `batch_size` apache/doris#37180
1. Add json type mapping apache/doris#37101 2. Add session instruction `enable_es_parallel_scroll` and `batch_size` apache/doris#37180
Proposed changes
enable_es_parallel_scroll
, default true. When it's false, Doris will send a scroll query to ES by one backend without shard preference and sort info. Which equals to call the search api directly of ES and it's very useful when you need a global sorting based on scores.