This is an automated email from the ASF dual-hosted git repository.
justinchen pushed a commit to branch dev/1.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/dev/1.3 by this push:
new 5efc8f789bc [To dev/1.3] Pipe: Update the log of the heartbeat process
reported by DN to CN (#15983) (#15997)
5efc8f789bc is described below
commit 5efc8f789bcb1ab0ff6b25ddb77d95e5dcfd73b3
Author: Zhenyu Luo <[email protected]>
AuthorDate: Tue Jul 22 17:27:32 2025 +0800
[To dev/1.3] Pipe: Update the log of the heartbeat process reported by DN
to CN (#15983) (#15997)
(cherry picked from commit 0340423366a5d990ffb953218ff1d330dd4306f4)
---
.../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;
}