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 2f2f9543c9e [minor](Cooldown) Log the old rowset id when uploading rowset to S3 #30339 2f2f9543c9e is described below commit 2f2f9543c9e4609427f6268680ad3af3a8b11a41 Author: AlexYue <yj976240...@gmail.com> AuthorDate: Thu Jan 25 23:58:40 2024 +0800 [minor](Cooldown) Log the old rowset id when uploading rowset to S3 #30339 --- be/src/olap/tablet.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/be/src/olap/tablet.cpp b/be/src/olap/tablet.cpp index e6445b5f5b6..8243b4a420d 100644 --- a/be/src/olap/tablet.cpp +++ b/be/src/olap/tablet.cpp @@ -1978,7 +1978,8 @@ Status Tablet::_cooldown_data(RowsetSharedPtr rowset) { LOG(INFO) << "Upload rowset " << old_rowset->version() << " " << new_rowset_id.to_string() << " to " << dest_fs->root_path().native() << ", tablet_id=" << tablet_id() << ", duration=" << duration.count() << ", capacity=" << old_rowset->data_disk_size() - << ", tp=" << old_rowset->data_disk_size() / duration.count(); + << ", tp=" << old_rowset->data_disk_size() / duration.count() + << ", old rowset_id=" << old_rowset->rowset_id().to_string(); // gen a new rowset auto new_rowset_meta = std::make_shared<RowsetMeta>(); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org