Skip to content

Commit

Permalink
[minor](Cooldown) Log the old rowset id when uploading rowset to S3 #…
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteYue authored Jan 25, 2024
1 parent d33fce2 commit 2f2f954
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion be/src/olap/tablet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>();
Expand Down

0 comments on commit 2f2f954

Please sign in to comment.