This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new 8c5da176799 [log](tablet) add gc log (#31185)
8c5da176799 is described below
commit 8c5da176799b65b8ff3bfdc4e9264c9f5b6db190
Author: yujun <[email protected]>
AuthorDate: Tue Mar 5 12:00:17 2024 +0800
[log](tablet) add gc log (#31185)
---
be/src/olap/tablet_manager.cpp | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/be/src/olap/tablet_manager.cpp b/be/src/olap/tablet_manager.cpp
index f1e8e6185fc..28007ae0cbb 100644
--- a/be/src/olap/tablet_manager.cpp
+++ b/be/src/olap/tablet_manager.cpp
@@ -266,7 +266,9 @@ Status TabletManager::create_tablet(const TCreateTabletReq&
request, std::vector
DorisMetrics::instance()->create_tablet_requests_total->increment(1);
int64_t tablet_id = request.tablet_id;
- LOG(INFO) << "begin to create tablet. tablet_id=" << tablet_id;
+ LOG(INFO) << "begin to create tablet. tablet_id=" << tablet_id
+ << ", table_id=" << request.table_id << ", partition_id=" <<
request.partition_id
+ << ", replica_id=" << request.replica_id;
// when we create rollup tablet A(assume on shard-1) from tablet B(assume
on shard-2)
// we need use write lock on shard-1 and then use read lock on shard-2
@@ -530,7 +532,8 @@ Status TabletManager::drop_tablet(TTabletId tablet_id,
TReplicaId replica_id,
// Drop specified tablet.
Status TabletManager::_drop_tablet_unlocked(TTabletId tablet_id, TReplicaId
replica_id,
bool keep_files, bool
is_drop_table_or_partition) {
- LOG(INFO) << "begin drop tablet. tablet_id=" << tablet_id << ",
replica_id=" << replica_id;
+ LOG(INFO) << "begin drop tablet. tablet_id=" << tablet_id << ",
replica_id=" << replica_id
+ << ", is_drop_table_or_partition=" << is_drop_table_or_partition;
DorisMetrics::instance()->drop_tablet_requests_total->increment(1);
// Fetch tablet which need to be dropped
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]