This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git

commit 25c71e386beeb5087ac9de4f1afafada9f3288b1
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 ebf406abf2f..2af47a5b430 100644
--- a/be/src/olap/tablet.cpp
+++ b/be/src/olap/tablet.cpp
@@ -2140,7 +2140,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

Reply via email to