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

dataroaring 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 3c403032b80 [test](regression) Add debug level log of editlog for p0 
p1 (#29992)
3c403032b80 is described below

commit 3c403032b808af1d3ca3dc1ab3afd517d40ff9a3
Author: Lei Zhang <[email protected]>
AuthorDate: Mon Jan 15 21:48:32 2024 +0800

    [test](regression) Add debug level log of editlog for p0 p1 (#29992)
---
 fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java | 4 ++--
 regression-test/pipeline/p0/conf/fe.conf                       | 2 ++
 regression-test/pipeline/p1/conf/fe.conf                       | 2 ++
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java 
b/fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java
index de2d5e92ae3..6eae5a68864 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java
@@ -1230,8 +1230,8 @@ public class EditLog {
         }
 
         if (LOG.isDebugEnabled()) {
-            LOG.debug("nextId = {}, numTransactions = {}, 
totalTimeTransactions = {}, op = {}", txId, numTransactions,
-                    totalTimeTransactions, op);
+            LOG.debug("nextId = {}, numTransactions = {}, 
totalTimeTransactions = {}, op = {} delta = {}",
+                    txId, numTransactions, totalTimeTransactions, op, end - 
start);
         }
 
         if (txId >= Config.edit_log_roll_num) {
diff --git a/regression-test/pipeline/p0/conf/fe.conf 
b/regression-test/pipeline/p0/conf/fe.conf
index 991340a431e..0dea0f0286d 100644
--- a/regression-test/pipeline/p0/conf/fe.conf
+++ b/regression-test/pipeline/p0/conf/fe.conf
@@ -107,3 +107,5 @@ enable_job_schedule_second_for_test = true
 
 enable_workload_group = true
 
+sys_log_verbose_modules = 
org.apache.doris.persist.EditLog,org.apache.doris.journal.bdbje.BDBJEJournal
+
diff --git a/regression-test/pipeline/p1/conf/fe.conf 
b/regression-test/pipeline/p1/conf/fe.conf
index 021760a3c6d..fe80f75954d 100644
--- a/regression-test/pipeline/p1/conf/fe.conf
+++ b/regression-test/pipeline/p1/conf/fe.conf
@@ -87,3 +87,5 @@ dynamic_partition_check_interval_seconds=3
 enable_feature_binlog=true
 
 auth_token = 5ff161c3-2c08-4079-b108-26c8850b6598
+
+sys_log_verbose_modules = 
org.apache.doris.persist.EditLog,org.apache.doris.journal.bdbje.BDBJEJournal


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to