Skip to content

Commit

Permalink
add log
Browse files Browse the repository at this point in the history
  • Loading branch information
bobhan1 committed Dec 26, 2024
1 parent 47f34e7 commit 2df0f17
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cloud/src/recycler/recycler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1554,6 +1554,11 @@ int InstanceRecycler::delete_rowset_data(const std::vector<doris::RowsetMetaClou
concurrent_delete_executor.add(
[&]() -> int { return delete_rowset_data(resource_id, tablet_id, rowset_id); });
}
if (!rowsets_delete_by_prefix.empty()) {
LOG_INFO("delete {} rowsets by prefix because they are in BEGIN_PARTIAL_UPDATE state",
rowsets_delete_by_prefix.size())
.tag("instance_id", instance_id_);
}
bool finished = true;
std::vector<int> rets = concurrent_delete_executor.when_all(&finished);
for (int r : rets) {
Expand Down

0 comments on commit 2df0f17

Please sign in to comment.