[Improvement](shuffle) Reduce memory consumption in data stream sender#41676
[Improvement](shuffle) Reduce memory consumption in data stream sender#41676Gabriel39 merged 2 commits intoapache:masterfrom
Conversation
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
|
run buildall |
| } | ||
|
|
||
| void VDataStreamRecvr::add_block(Block* block, int sender_id, bool use_move) { | ||
| void VDataStreamRecvr::add_block(Block* block, int sender_id) { |
There was a problem hiding this comment.
warning: method 'add_block' can be made const [readability-make-member-function-const]
| void VDataStreamRecvr::add_block(Block* block, int sender_id) { | |
| void VDataStreamRecvr::add_block(Block* block, int sender_id) const { |
be/src/vec/runtime/vdata_stream_recvr.h:88:
- void add_block(Block* block, int sender_id);
+ void add_block(Block* block, int sender_id) const;|
TeamCity be ut coverage result: |
|
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! 👍" |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
run buildall |
|
TeamCity be ut coverage result: |
|
PR approved by at least one committer and no changes requested. |
Proposed changes
Before:


After:
