This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 41dae8b6bb [improvement](load) add a log when close OlapTableSink with
error (#14257)
41dae8b6bb is described below
commit 41dae8b6bba637bccd7e55097c5a0397112236a3
Author: zhannngchen <[email protected]>
AuthorDate: Mon Nov 21 10:33:37 2022 +0800
[improvement](load) add a log when close OlapTableSink with error (#14257)
---
be/src/exec/tablet_sink.cpp | 3 +++
1 file changed, 3 insertions(+)
diff --git a/be/src/exec/tablet_sink.cpp b/be/src/exec/tablet_sink.cpp
index 408ff14e20..7a6708ee25 100644
--- a/be/src/exec/tablet_sink.cpp
+++ b/be/src/exec/tablet_sink.cpp
@@ -1185,6 +1185,9 @@ Status OlapTableSink::close(RuntimeState* state, Status
close_status) {
ch->cancel(status.get_error_msg());
});
}
+ LOG(INFO) << "finished to close olap table sink. load_id=" <<
print_id(_load_id)
+ << ", txn_id=" << _txn_id
+ << ", canceled all node channels due to error: " <<
status.get_error_msg();
}
// Sender join() must put after node channels mark_close/cancel.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]