Search before asking
Version
Doris 3.0.5
What's Wrong?
In Doris 3.0.5 , create a table as follow:
CREATE TABLE test_table(...) ENGINE=OLAP DUPLICATE KEY(...) PARTITION BY RANGE(...)() DISTRIBUTED BY RANDOM BUCKETS AUTO PROPERTIES ( "group_commit_interval_ms" = "20000", "group_commit_data_bytes" = "655360000" );
Using stream load api to put data to the table, the cpu is high than Doris2. In Doris 2, the avg cpu usage is 0.7% but in Doris 3 the avg cpu usage is 4%.
I try to search and the reason may be caused by the code in be/src/pipeline/exec/group_commit_scan_operator.cpp

What You Expected?
I expected the be service cpu usage is same than doris2.
How to Reproduce?
No response
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct