Gabriel39 commented on code in PR #28698: URL: https://github.com/apache/doris/pull/28698#discussion_r1432518792
########## be/src/pipeline/exec/exchange_sink_operator.cpp: ########## @@ -456,21 +449,16 @@ void ExchangeSinkLocalState::register_channels( } Status ExchangeSinkLocalState::get_next_available_buffer( - vectorized::BroadcastPBlockHolder** holder) { + std::shared_ptr<vectorized::BroadcastPBlockHolder>* holder) { Review Comment: ```suggestion std::shared_ptr<vectorized::BroadcastPBlockHolder>& holder) { ``` ########## be/src/pipeline/exec/exchange_sink_buffer.cpp: ########## @@ -45,16 +45,40 @@ #include "vec/sink/vdata_stream_sender.h" namespace doris { + namespace vectorized { +BroadcastPBlockHolder::~BroadcastPBlockHolder() { + // lock the parent queue, if the queue could lock success, then return the block + // to the queue, to reuse the block + std::shared_ptr<BroadcastPBlockHolderQueue> tmp_queue = _parent_creator.lock(); + if (tmp_queue != nullptr) { + tmp_queue->push(BroadcastPBlockHolder::create_shared(std::move(_pblock))); + } + // If the queue already deconstruted, then release pblock automatically since it + // is a unique ptr. +} -void BroadcastPBlockHolder::unref() noexcept { - DCHECK_GT(_ref_count._value, 0); - auto old_value = _ref_count._value.fetch_sub(1); - if (_dep && old_value == 1) { - _dep->return_available_block(); +void BroadcastPBlockHolderQueue::push(std::shared_ptr<BroadcastPBlockHolder> holder) { + std::unique_lock l(_holders_lock); + holder->set_parent_creator(shared_from_this()); + _holders.push(holder); + if (_broadcast_dependency) { + _broadcast_dependency->set_ready(); } } +std::shared_ptr<BroadcastPBlockHolder> BroadcastPBlockHolderQueue::pop() { + std::unique_lock l(_holders_lock); + if (_holders.empty()) { + return {}; + } + std::shared_ptr<BroadcastPBlockHolder> res = _holders.top(); + _holders.pop(); + if (_holders.empty() && _broadcast_dependency != nullptr) { Review Comment: DCHECK(_broadcast_dependency != nullptr); -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org