Uh oh!
There was an error while loading. Please reload this page.
[fix](move-memtable) ignore single replica load when move memtable - #32845
Conversation
doris-robot
commented
Mar 26, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
kaijchen
commented
Mar 26, 2024
run buildall |
kaijchen
commented
Mar 26, 2024
run buildall |
doris-robot
commented
Mar 26, 2024
TPC-H: Total hot run time: 38373 ms |
doris-robot
commented
Mar 26, 2024
TPC-DS: Total hot run time: 181411 ms |
doris-robot
commented
Mar 26, 2024
Load test result on machine: 'aliyun_ecs.c7a.8xlarge_32C64G' |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
| } else { | ||
| sink = new OlapTableSink((OlapTable) targetTable, olapTuple, targetPartitionIds, | ||
| analyzer.getContext().getSessionVariable().isEnableSingleReplicaInsert()); | ||
| enableSingleReplicaLoad); |
There was a problem hiding this comment.
do we need add this feature to nereids?
There was a problem hiding this comment.
Currently there is no single_replica_load option in nereids.
This PR is for fixing a problem.
If there is a need, we can create a new PR for that feature.
liaoxin01
commented
Apr 12, 2024
run cloud_p1 |
kaijchen
commented
Apr 12, 2024
run buildall |
liaoxin01
commented
Apr 12, 2024
run fe_ut |
liaoxin01
commented
Apr 13, 2024
run buildall |
doris-robot
commented
Apr 13, 2024
TPC-H: Total hot run time: 38555 ms |
doris-robot
commented
Apr 13, 2024
TPC-DS: Total hot run time: 184712 ms |
doris-robot
commented
Apr 13, 2024
ClickBench: Total hot run time: 30.59 s |
doris-robot
commented
Apr 13, 2024
Load test result on machine: 'aliyun_ecs.c7a.8xlarge_32C64G' |
liaoxin01
commented
Apr 16, 2024
run p0 |
…32845) Co-authored-by: Xin Liao <liaoxinbit@126.com>
…pache#32845) Co-authored-by: Xin Liao <liaoxinbit@126.com>
…pache#32845) Co-authored-by: Xin Liao <liaoxinbit@126.com>
Proposed changes
Single replica load is not compatible with memtable on sink node.
Enabling single replica load when move memtable will cause missing location in OlapTableSink plan.
Ignore single replica load config when memtable on sink node is enabled.
Namely
enable_single_replica_loadconfig in fe.conf andenable_single_replica_insertin session variable.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...