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 bf136a5906b branch-3.1: [fix](cloud) Change CloudGlobalTransactionMgr
some log to debug level #57168 (#57246)
bf136a5906b is described below
commit bf136a5906b200b38a3584715d6dcd0e96b5fc8d
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Oct 30 14:38:56 2025 +0800
branch-3.1: [fix](cloud) Change CloudGlobalTransactionMgr some log to debug
level #57168 (#57246)
Cherry-picked from #57168
Co-authored-by: deardeng <[email protected]>
---
.../cloud/transaction/CloudGlobalTransactionMgr.java | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/cloud/transaction/CloudGlobalTransactionMgr.java
b/fe/fe-core/src/main/java/org/apache/doris/cloud/transaction/CloudGlobalTransactionMgr.java
index 2abbc072b9f..c3a8bcc450c 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/cloud/transaction/CloudGlobalTransactionMgr.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/cloud/transaction/CloudGlobalTransactionMgr.java
@@ -1757,7 +1757,7 @@ public class CloudGlobalTransactionMgr implements
GlobalTransactionMgrIface {
public List<TransactionState> getUnFinishedPreviousLoad(long
endTransactionId, long dbId, List<Long> tableIdList)
throws UserException {
- LOG.info("getUnFinishedPreviousLoad(), endTransactionId:{}, dbId:{},
tableIdList:{}",
+ LOG.debug("getUnFinishedPreviousLoad(), endTransactionId:{}, dbId:{},
tableIdList:{}",
endTransactionId, dbId, tableIdList);
if (endTransactionId <= 0) {
@@ -1772,10 +1772,10 @@ public class CloudGlobalTransactionMgr implements
GlobalTransactionMgrIface {
final CheckTxnConflictRequest checkTxnConflictRequest =
builder.build();
CheckTxnConflictResponse checkTxnConflictResponse = null;
try {
- LOG.info("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
+ LOG.debug("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
checkTxnConflictResponse = MetaServiceProxy
.getInstance().checkTxnConflict(checkTxnConflictRequest);
- LOG.info("CheckTxnConflictResponse: {}", checkTxnConflictResponse);
+ LOG.debug("CheckTxnConflictResponse: {}",
checkTxnConflictResponse);
} catch (RpcException e) {
throw new UserException(e.getMessage());
}
@@ -1794,7 +1794,7 @@ public class CloudGlobalTransactionMgr implements
GlobalTransactionMgrIface {
@Override
public boolean isPreviousTransactionsFinished(long endTransactionId, long
dbId, List<Long> tableIdList)
throws AnalysisException {
- LOG.info("isPreviousTransactionsFinished(), endTransactionId:{},
dbId:{}, tableIdList:{}",
+ LOG.debug("isPreviousTransactionsFinished(), endTransactionId:{},
dbId:{}, tableIdList:{}",
endTransactionId, dbId, tableIdList);
if (endTransactionId <= 0) {
@@ -1809,10 +1809,10 @@ public class CloudGlobalTransactionMgr implements
GlobalTransactionMgrIface {
final CheckTxnConflictRequest checkTxnConflictRequest =
builder.build();
CheckTxnConflictResponse checkTxnConflictResponse = null;
try {
- LOG.info("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
+ LOG.debug("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
checkTxnConflictResponse = MetaServiceProxy
.getInstance().checkTxnConflict(checkTxnConflictRequest);
- LOG.info("CheckTxnConflictResponse: {}", checkTxnConflictResponse);
+ LOG.debug("CheckTxnConflictResponse: {}",
checkTxnConflictResponse);
} catch (RpcException e) {
throw new AnalysisException(e.getMessage());
}
@@ -1830,7 +1830,7 @@ public class CloudGlobalTransactionMgr implements
GlobalTransactionMgrIface {
public boolean isPreviousNonTimeoutTxnFinished(long endTransactionId, long
dbId, List<Long> tableIdList)
throws AnalysisException {
- LOG.info("isPreviousNonTimeoutTxnFinished(), endTransactionId:{},
dbId:{}, tableIdList:{}",
+ LOG.debug("isPreviousNonTimeoutTxnFinished(), endTransactionId:{},
dbId:{}, tableIdList:{}",
endTransactionId, dbId, tableIdList);
if (endTransactionId <= 0) {
@@ -1846,10 +1846,10 @@ public class CloudGlobalTransactionMgr implements
GlobalTransactionMgrIface {
final CheckTxnConflictRequest checkTxnConflictRequest =
builder.build();
CheckTxnConflictResponse checkTxnConflictResponse = null;
try {
- LOG.info("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
+ LOG.debug("CheckTxnConflictRequest:{}", checkTxnConflictRequest);
checkTxnConflictResponse = MetaServiceProxy
.getInstance().checkTxnConflict(checkTxnConflictRequest);
- LOG.info("CheckTxnConflictResponse: {}", checkTxnConflictResponse);
+ LOG.debug("CheckTxnConflictResponse: {}",
checkTxnConflictResponse);
} catch (RpcException e) {
throw new AnalysisException(e.getMessage());
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]