Uh oh!
There was an error while loading. Please reload this page.
[improve](scan)scanner could eos early when reached limit - #36535
Conversation
doris-robot
commented
Jun 19, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
zhangstar333
commented
Jun 19, 2024
run buildall |
e7937ba to
44252a4Comparezhangstar333
commented
Jun 19, 2024
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
1 similar comment
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Jun 19, 2024
TeamCity be ut coverage result: |
doris-robot
commented
Jun 19, 2024
TPC-H: Total hot run time: 39648 ms |
doris-robot
commented
Jun 19, 2024
TPC-DS: Total hot run time: 174097 ms |
doris-robot
commented
Jun 19, 2024
ClickBench: Total hot run time: 30.28 s |
Uh oh!
There was an error while loading. Please reload this page.
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
clang-tidy review says "All clean, LGTM! 👍" |
zhangstar333
commented
Jun 20, 2024
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Jun 20, 2024
TPC-H: Total hot run time: 40206 ms |
doris-robot
commented
Jun 20, 2024
TeamCity be ut coverage result: |
doris-robot
commented
Jun 20, 2024
TPC-H: Total hot run time: 40018 ms |
doris-robot
commented
Jun 21, 2024
TPC-H: Total hot run time: 40478 ms |
doris-robot
commented
Jun 21, 2024
TPC-DS: Total hot run time: 173747 ms |
doris-robot
commented
Jun 21, 2024
ClickBench: Total hot run time: 30.2 s |
…#36535) (apache#36738) ## Proposed changes cherry-pick from master apache#36535
… limit involved (#39927) For queries like `select * from tbl limit 100;`, we should limit the parallelism to 1. We already have strategies in our code, but we can not control its behavior. So add session variables to control them. Previous pr like #33888#36535 already has done something similar, this pr integrates them.
… limit involved (apache#39927) For queries like `select * from tbl limit 100;`, we should limit the parallelism to 1. We already have strategies in our code, but we can not control its behavior. So add session variables to control them. Previous pr like apache#33888apache#36535 already has done something similar, this pr integrates them.
… limit involved (apache#39927) For queries like `select * from tbl limit 100;`, we should limit the parallelism to 1. We already have strategies in our code, but we can not control its behavior. So add session variables to control them. Previous pr like apache#33888apache#36535 already has done something similar, this pr integrates them.
… limit involved (apache#39927) For queries like `select * from tbl limit 100;`, we should limit the parallelism to 1. We already have strategies in our code, but we can not control its behavior. So add session variables to control them. Previous pr like apache#33888apache#36535 already has done something similar, this pr integrates them.
… limit involved (apache#39927) For queries like `select * from tbl limit 100;`, we should limit the parallelism to 1. We already have strategies in our code, but we can not control its behavior. So add session variables to control them. Previous pr like apache#33888apache#36535 already has done something similar, this pr integrates them.
… limit involved (apache#39927) For queries like `select * from tbl limit 100;`, we should limit the parallelism to 1. We already have strategies in our code, but we can not control its behavior. So add session variables to control them. Previous pr like apache#33888apache#36535 already has done something similar, this pr integrates them.
Proposed changes
two point have change:
could set eos when scan rows reached limit, it should use _limit variables.