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 4589bb1c265 [enhancement](log) Changed log of waiting previous
transactions to info level for debug convenience (#38133)
4589bb1c265 is described below
commit 4589bb1c26550e21c98ed862a87f5f8d67526c11
Author: Siyang Tang <[email protected]>
AuthorDate: Mon Jul 22 19:06:34 2024 +0800
[enhancement](log) Changed log of waiting previous transactions to info
level for debug convenience (#38133)
As title.
---
.../java/org/apache/doris/transaction/DatabaseTransactionMgr.java | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/transaction/DatabaseTransactionMgr.java
b/fe/fe-core/src/main/java/org/apache/doris/transaction/DatabaseTransactionMgr.java
index 5944170cb3d..eb1a07cc69d 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/transaction/DatabaseTransactionMgr.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/transaction/DatabaseTransactionMgr.java
@@ -2311,10 +2311,8 @@ public class DatabaseTransactionMgr {
continue;
}
if (entry.getKey() <= endTransactionId) {
- if (LOG.isDebugEnabled()) {
- LOG.debug("find a running txn with txn_id={} on db:
{}, less than watermark txn_id {}",
- entry.getKey(), dbId, endTransactionId);
- }
+ LOG.info("find a running txn with txn_id={} on db: {},
less than watermark txn_id {}",
+ entry.getKey(), dbId, endTransactionId);
return false;
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]