Uh oh!
There was an error while loading. Please reload this page.
[Improvement](shuffle) Reduce memory consumption in data stream sender - #41676
Conversation
doris-robot
commented
Oct 10, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
Gabriel39
commented
Oct 10, 2024
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]
| voidVDataStreamRecvr::add_block(Block* block, int sender_id) { | |
| voidVDataStreamRecvr::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;doris-robot
commented
Oct 10, 2024
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! 👍" |
Gabriel39
commented
Oct 11, 2024
run buildall |
doris-robot
commented
Oct 11, 2024
TeamCity be ut coverage result: |
PR approved by at least one committer and no changes requested. |
Proposed changes
Before:


After:
