This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new 73621c480a7 [fix](log) fix group commit warn log (#42403) (#42575)
73621c480a7 is described below
commit 73621c480a707c640989652b5ac998c43dffb0bf
Author: meiyi <[email protected]>
AuthorDate: Mon Oct 28 21:04:29 2024 +0800
[fix](log) fix group commit warn log (#42403) (#42575)
pick https://github.com/apache/doris/pull/42403
---
.../src/main/java/org/apache/doris/load/GroupCommitManager.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/load/GroupCommitManager.java
b/fe/fe-core/src/main/java/org/apache/doris/load/GroupCommitManager.java
index 656a9a8a0ae..f46f7e9b7ed 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/load/GroupCommitManager.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/load/GroupCommitManager.java
@@ -327,10 +327,10 @@ public class GroupCommitManager {
private void updateLoadDataInternal(long tableId, long receiveData) {
if (tableToPressureMap.containsKey(tableId)) {
tableToPressureMap.get(tableId).add(receiveData);
- LOG.info("Update load data for table{}, receiveData {},
tablePressureMap {}", tableId, receiveData,
+ LOG.info("Update load data for table {}, receiveData {},
tablePressureMap {}", tableId, receiveData,
tableToPressureMap.toString());
- } else {
- LOG.warn("can not find backend id: {}", tableId);
+ } else if (LOG.isDebugEnabled()) {
+ LOG.debug("can not find table id {}", tableId);
}
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]