This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.1 by this push:
new e152d436fdb branch-3.1: [chore](log): change some info logs to debug
#55138 (#55172)
e152d436fdb is described below
commit e152d436fdb61d469a15e2250ed2c3764ba3b48d
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Aug 26 09:15:15 2025 +0800
branch-3.1: [chore](log): change some info logs to debug #55138 (#55172)
Cherry-picked from #55138
Co-authored-by: Kaijie Chen <[email protected]>
---
be/src/cloud/cloud_tablet.cpp | 6 +++---
be/src/cloud/cloud_warm_up_manager.cpp | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/be/src/cloud/cloud_tablet.cpp b/be/src/cloud/cloud_tablet.cpp
index b398454ba33..cdb3dcbb471 100644
--- a/be/src/cloud/cloud_tablet.cpp
+++ b/be/src/cloud/cloud_tablet.cpp
@@ -470,9 +470,9 @@ uint64_t CloudTablet::delete_expired_stale_rowsets() {
if (rs_it != _stale_rs_version_map.end()) {
expired_rowsets.push_back(rs_it->second);
stale_rowsets.push_back(rs_it->second);
- LOG(INFO) << "erase stale rowset, tablet_id=" <<
tablet_id()
- << " rowset_id=" <<
rs_it->second->rowset_id().to_string()
- << " version=" << rs_it->first.to_string();
+ VLOG_DEBUG << "erase stale rowset, tablet_id=" <<
tablet_id()
+ << " rowset_id=" <<
rs_it->second->rowset_id().to_string()
+ << " version=" << rs_it->first.to_string();
_stale_rs_version_map.erase(rs_it);
} else {
LOG(WARNING) << "cannot find stale rowset " <<
v_ts->version() << " in tablet "
diff --git a/be/src/cloud/cloud_warm_up_manager.cpp
b/be/src/cloud/cloud_warm_up_manager.cpp
index bc14e607a6b..d536a641a89 100644
--- a/be/src/cloud/cloud_warm_up_manager.cpp
+++ b/be/src/cloud/cloud_warm_up_manager.cpp
@@ -505,8 +505,8 @@ void CloudWarmUpManager::warm_up_rowset(RowsetMeta&
rs_meta, int64_t sync_wait_t
bool cache_hit = false;
auto replicas = get_replica_info(rs_meta.tablet_id(), false, cache_hit);
if (replicas.empty()) {
- LOG(INFO) << "There is no need to warmup tablet=" <<
rs_meta.tablet_id()
- << ", skipping rowset=" << rs_meta.rowset_id().to_string();
+ VLOG_DEBUG << "There is no need to warmup tablet=" <<
rs_meta.tablet_id()
+ << ", skipping rowset=" << rs_meta.rowset_id().to_string();
return;
}
Status st = _do_warm_up_rowset(rs_meta, replicas, sync_wait_timeout_ms,
!cache_hit);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]