Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
Doris-Extras committed Sep 23, 2024
1 parent fe14856 commit 15e35fc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions be/src/runtime/workload_group/workload_group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,10 +418,16 @@ WorkloadGroupInfo WorkloadGroupInfo::parse_topic_info(
remote_read_bytes_per_second = tworkload_group_info.remote_read_bytes_per_second;
}

LOG(INFO) << "Received publish workload group info request: "
<< apache::thrift::ThriftDebugString(tworkload_group_info).c_str();
// 16 total slots
int total_query_slot_count = TOTAL_QUERY_SLOT_COUNT_DEFAULT_VALUE;
LOG(INFO) << "Total slot count2 " << total_query_slot_count;
if (tworkload_group_info.__isset.total_query_slot_count) {
total_query_slot_count = tworkload_group_info.total_query_slot_count;
LOG(INFO) << "Total slot count2 " << total_query_slot_count;
} else {
LOG(INFO) << "Total slot coun3 false ";
}

return {.id = tg_id,
Expand Down

0 comments on commit 15e35fc

Please sign in to comment.