This is an automated email from the ASF dual-hosted git repository.

caiconghui pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-1.2-lts by this push:
     new aca11193d81 [enhancment](log) Remove unnessary log when load tablet of 
which state is tablet_shutdown to speed up recovery when restart (#27654)
aca11193d81 is described below

commit aca11193d81535ddd03d4789d76d8a245fcd4e3f
Author: caiconghui <55968745+caicong...@users.noreply.github.com>
AuthorDate: Tue Nov 28 10:54:35 2023 +0800

    [enhancment](log) Remove unnessary log when load tablet of which state is 
tablet_shutdown to speed up recovery when restart (#27654)
---
 be/src/olap/tablet_manager.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/olap/tablet_manager.cpp b/be/src/olap/tablet_manager.cpp
index 14c2489c244..f2037ab2621 100644
--- a/be/src/olap/tablet_manager.cpp
+++ b/be/src/olap/tablet_manager.cpp
@@ -814,8 +814,8 @@ Status TabletManager::load_tablet_from_meta(DataDir* 
data_dir, TTabletId tablet_
     }
 
     if (tablet_meta->tablet_state() == TABLET_SHUTDOWN) {
-        LOG(INFO) << "fail to load tablet because it is to be deleted. 
tablet_id=" << tablet_id
-                  << " schema_hash=" << schema_hash << ", path=" << 
data_dir->path();
+        VLOG_NOTICE << "fail to load tablet because it is to be deleted. 
tablet_id=" << tablet_id
+                    << " schema_hash=" << schema_hash << ", path=" << 
data_dir->path();
         {
             std::lock_guard<std::shared_mutex> 
shutdown_tablets_wrlock(_shutdown_tablets_lock);
             _shutdown_tablets.push_back(tablet);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to