[opt](pipeline) Make pipeline fragment context send_report asynchronized (#23142)

This commit is contained in:
Lijia Liu
2023-09-28 17:55:53 +08:00
committed by GitHub
parent 230b7bd15e
commit 864a0f9bcb
27 changed files with 284 additions and 237 deletions

View File

@ -198,7 +198,8 @@ Status ExecNode::close(RuntimeState* state) {
<< " already closed";
return Status::OK();
}
LOG(INFO) << "fragment_instance_id=" << print_id(state->fragment_instance_id()) << " closed";
LOG(INFO) << "fragment_instance_id=" << print_id(state->fragment_instance_id()) << ", "
<< " id=" << _id << " type=" << print_plan_node_type(_type) << " closed";
_is_closed = true;
Status result;