You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by yi...@apache.org on 2023/06/05 00:45:40 UTC

[doris] branch master updated: [Fix] Change open tablet log level #20306

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

yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 92af861481 [Fix] Change open tablet log level #20306
92af861481 is described below

commit 92af8614816c749f430bd582164a751552347756
Author: HHoflittlefish777 <77...@users.noreply.github.com>
AuthorDate: Mon Jun 5 08:45:32 2023 +0800

    [Fix] Change open tablet log level #20306
    
    Now, during the open tablet operation, logs will be printed, and a large number of logs will be generated under high-frequency import. It is necessary to reduce the log level.
---
 be/src/vec/sink/vtablet_sink.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/vec/sink/vtablet_sink.cpp b/be/src/vec/sink/vtablet_sink.cpp
index a5711f4c12..813d972b63 100644
--- a/be/src/vec/sink/vtablet_sink.cpp
+++ b/be/src/vec/sink/vtablet_sink.cpp
@@ -1126,7 +1126,7 @@ Status VOlapTableSink::open(RuntimeState* state) {
         index_channel->for_each_node_channel(
                 [](const std::shared_ptr<VNodeChannel>& ch) { ch->open(); });
     }
-    LOG(INFO) << "list of open index id = " << fmt::to_string(buf);
+    VLOG_DEBUG << "list of open index id = " << fmt::to_string(buf);
 
     for (auto index_channel : _channels) {
         index_channel->for_each_node_channel([&index_channel](
@@ -1171,7 +1171,7 @@ void VOlapTableSink::_open_partition(const VOlapTablePartition* partition) {
                 }
             }
         }
-        LOG(INFO) << "list of lazy open index id = " << fmt::to_string(buf);
+        VLOG_DEBUG << "list of lazy open index id = " << fmt::to_string(buf);
     }
 }
 


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