Skip to content
Closed
Changes from all commits
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
5 changes: 4 additions & 1 deletion be/src/vec/sink/vdata_stream_sender.h
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,10 @@ class VDataStreamSender::Channel {
LOG(WARNING) << err;
return Status::RpcError(err);
}
return Status::OK();
// If the rpc package send to receiver, but the receiver offer to the queue failed, then should
// return the error status, so that the query could be canceled by BE and send the error status
// to FE, then FE could send cancel to other BEs.
return Status::create(_closure->result.status());
}

private:
Expand Down