This is an automated email from the ASF dual-hosted git repository.

jiangtian 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 538e7caf7da [To dev/1.3] Ignore the pipe plugin failure when starting 
a DataNode (#17000)
538e7caf7da is described below

commit 538e7caf7da871e89131a7428838197b416c42f3
Author: Caideyipi <[email protected]>
AuthorDate: Fri Jan 9 10:33:11 2026 +0800

    [To dev/1.3] Ignore the pipe plugin failure when starting a DataNode 
(#17000)
---
 .../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);
     }
   }
 

Reply via email to