Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix insert into mode is not restriction for BE storage_flood_stage_usage_percent param #36657

Open
wants to merge 6 commits into
base: branch-2.1
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update load_stream.cpp
  • Loading branch information
dh-cloud authored Nov 27, 2024
commit 0905198d039b0b376a8cc707783f96710104904d
2 changes: 1 addition & 1 deletion be/src/runtime/load_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ void LoadStream::on_idle_timeout(StreamId id) {

void LoadStream::on_closed(StreamId id) {
auto remaining_streams = _total_streams - _close_rpc_cnt.fetch_add(1) - 1;
LOG(INFO) << "stream " << id << " on_closed, remaining streams = " << remaining_streams;
LOG(DEBUG) << "stream " << id << " on_closed, remaining streams = " << remaining_streams;
if (remaining_streams == 0) {
_load_stream_mgr->clear_load(_load_id);
}
Expand Down