This is an automated email from the ASF dual-hosted git repository.
justinchen pushed a commit to branch plugin-ignore.13
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/plugin-ignore.13 by this push:
new 004c5b4dc4f [To dev/1.3] Ignore the pipe plugin failure when starting
a DataNode
004c5b4dc4f is described below
commit 004c5b4dc4f5195e787ae3f4896fcb764abcce5d
Author: Caideyipi <[email protected]>
AuthorDate: Wed Jan 7 18:55:09 2026 +0800
[To dev/1.3] Ignore the pipe plugin failure when starting a DataNode
---
.../java/org/apache/iotdb/db/pipe/agent/runtime/PipeAgentLauncher.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/agent/runtime/PipeAgentLauncher.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/agent/runtime/PipeAgentLauncher.java
index 1b56a00b325..77f2b143966 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/agent/runtime/PipeAgentLauncher.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/agent/runtime/PipeAgentLauncher.java
@@ -91,7 +91,8 @@ class PipeAgentLauncher {
PipeDataNodeAgent.plugin().doRegister(meta);
}
} catch (Exception e) {
- throw new StartupException(e);
+ // Ignore the pipe plugin errors and continue to start
+ LOGGER.warn("Failure when register pipe plugins, will ignore.", e);
}
}