This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new ad8c0127b88 branch-3.0: [opt](log) Add some logs for recycler #47600
(#47714)
ad8c0127b88 is described below
commit ad8c0127b88e5b1a261bc92d306c0b7faed30a4f
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Feb 11 11:36:41 2025 +0800
branch-3.0: [opt](log) Add some logs for recycler #47600 (#47714)
Cherry-picked from #47600
Co-authored-by: abmdocrt <[email protected]>
---
cloud/src/recycler/recycler.cpp | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/cloud/src/recycler/recycler.cpp b/cloud/src/recycler/recycler.cpp
index a37f963989e..229931002f4 100644
--- a/cloud/src/recycler/recycler.cpp
+++ b/cloud/src/recycler/recycler.cpp
@@ -545,7 +545,9 @@ int InstanceRecycler::init_storage_vault_accessors() {
<< " hdfs_vault=" <<
vault.hdfs_info().ShortDebugString();
continue;
}
-
+ LOG(INFO) << "succeed to init hdfs accessor. instance_id=" <<
instance_id_
+ << " resource_id=" << vault.id() << " name=" <<
vault.name()
+ << " hdfs_vault=" <<
vault.hdfs_info().ShortDebugString();
accessor_map_.emplace(vault.id(), std::move(accessor));
} else if (vault.has_obj_info()) {
auto s3_conf = S3Conf::from_obj_store_info(vault.obj_info());
@@ -564,7 +566,9 @@ int InstanceRecycler::init_storage_vault_accessors() {
<< " s3_vault=" <<
vault.obj_info().ShortDebugString();
continue;
}
-
+ LOG(INFO) << "succeed to init s3 accessor. instance_id=" <<
instance_id_
+ << " resource_id=" << vault.id() << " name=" <<
vault.name() << " ret=" << ret
+ << " s3_vault=" << vault.obj_info().ShortDebugString();
accessor_map_.emplace(vault.id(), std::move(accessor));
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]