This is an automated email from the ASF dual-hosted git repository.
justinchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 0340423366a Pipe: Update the log of the heartbeat process reported by
DN to CN (#15983)
0340423366a is described below
commit 0340423366a5d990ffb953218ff1d330dd4306f4
Author: Zhenyu Luo <[email protected]>
AuthorDate: Tue Jul 22 15:44:27 2025 +0800
Pipe: Update the log of the heartbeat process reported by DN to CN (#15983)
---
.../pipe/coordinator/runtime/heartbeat/PipeHeartbeatParser.java | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/pipe/coordinator/runtime/heartbeat/PipeHeartbeatParser.java
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/pipe/coordinator/runtime/heartbeat/PipeHeartbeatParser.java
index e2303fecdea..bb046102283 100644
---
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/pipe/coordinator/runtime/heartbeat/PipeHeartbeatParser.java
+++
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/pipe/coordinator/runtime/heartbeat/PipeHeartbeatParser.java
@@ -185,9 +185,8 @@ public class PipeHeartbeatParser {
final PipeTaskMeta runtimeMetaFromAgent =
pipeTaskMetaMapFromAgent.get(runtimeMetaFromCoordinator.getKey());
if (runtimeMetaFromAgent == null) {
- LOGGER.warn(
- "PipeRuntimeCoordinator meets error in updating pipeMetaKeeper, "
- + "runtimeMetaFromAgent is null, runtimeMetaFromCoordinator:
{}",
+ LOGGER.info(
+ "No corresponding Pipe is running in the reported DataRegion.
runtimeMetaFromAgent is null, runtimeMetaFromCoordinator: {}",
runtimeMetaFromCoordinator);
continue;
}