benjava opened a new issue, #10569:
URL: https://github.com/apache/seatunnel/issues/10569

   ### Search before asking
   
   - [x] I had searched in the 
[issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22)
 and found no similar issues.
   
   
   ### What happened
   
   使用docker swarm集群部署时,工作节点无法启动;
   manager节点正常启动,worker节点启动失败
   
   
   ### SeaTunnel Version
   
   2.3.12
   
   ### SeaTunnel Config
   
   ```conf
   docker-compose.yml内容如下:
   `services:
     st-master:
       image: apache/seatunnel:2.3.12
       environment:
         - ST_DOCKER_MEMBER_LIST=st-master,st-worker1:5802,st-worker2:5803
       entrypoint: >
         /bin/sh -c "/opt/seatunnel/bin/seatunnel-cluster.sh -r master"
       ports:
         - 5801:5801
         - 8080:8080
       deploy:
         replicas: 1
         mode: replicated
         placement:
           constraints:
             - "node.hostname==server-200"
         restart_policy:
           condition: on-failure
   
     st-worker1:
       image: apache/seatunnel:2.3.12
       environment:
         - ST_DOCKER_MEMBER_LIST=st-master,st-worker1:5802,st-worker2:5803
       entrypoint: >
         /bin/sh -c "/opt/seatunnel/bin/seatunnel-cluster.sh -r worker"
       ports:
         - 5802:5801
       depends_on:
         - st-master
       deploy:
         replicas: 1
         mode: replicated
         placement:
           constraints:
             - "node.hostname==server-201"
         restart_policy:
           condition: on-failure
   
     st-worker2:
       image: apache/seatunnel:2.3.12
       environment:
         - ST_DOCKER_MEMBER_LIST=st-master,st-worker1:5802,st-worker2:5803
       entrypoint: >
         /bin/sh -c "/opt/seatunnel/bin/seatunnel-cluster.sh -r worker"
       ports:
         - 5803:5801
       depends_on:
         - st-master
       deploy:
         replicas: 1
         mode: replicated
         placement:
           constraints:
             - "node.hostname==server-202"
         restart_policy:
           condition: on-failure`
   ```
   
   ### Running Command
   
   ```shell
   docker swarm 管理节点上执行:
   docker stack deploy -c docker-compose.yml stec-st
   ```
   
   ### Error Exception
   
   ```log
   `start worker node
   [] 2026-03-06 09:01:50,732 INFO  [c.h.i.c.AbstractConfigLocator ] [main] - 
Loading configuration '/opt/seatunnel/config/seatunnel.yaml' from System 
property 'seatunnel.config'
   [] 2026-03-06 09:01:50,733 INFO  [c.h.i.c.AbstractConfigLocator ] [main] - 
Using configuration file at /opt/seatunnel/config/seatunnel.yaml
   [] 2026-03-06 09:01:50,733 INFO  [o.a.s.e.c.c.SeaTunnelConfig   ] [main] - 
seatunnel.home is /opt/seatunnel
   [] 2026-03-06 09:01:50,775 INFO  [amlSeaTunnelDomConfigProcessor] [main] - 
Dynamic slot is enabled, the schedule strategy is set to REJECT
   [] 2026-03-06 09:01:50,775 INFO  [c.h.i.c.AbstractConfigLocator ] [main] - 
Loading configuration '/opt/seatunnel/config/hazelcast-worker.yaml' from System 
property 'hazelcast.config'
   [] 2026-03-06 09:01:50,775 INFO  [c.h.i.c.AbstractConfigLocator ] [main] - 
Using configuration file at /opt/seatunnel/config/hazelcast-worker.yaml
   [] 2026-03-06 09:01:50,986 WARN  [c.h.i.AddressPicker           ] [main] - 
[LOCAL] [seatunnel] [5.1] You configured your member address as host name. 
Please be aware of that your dns can be spoofed. Make sure that your dns 
configurations are correct.
   [] 2026-03-06 09:01:50,986 INFO  [c.h.i.AddressPicker           ] [main] - 
[LOCAL] [seatunnel] [5.1] Resolving domain name 'st-worker1' to address(es): 
[10.0.15.2]
   [] 2026-03-06 09:01:50,986 WARN  [c.h.i.AddressPicker           ] [main] - 
[LOCAL] [seatunnel] [5.1] You configured your member address as host name. 
Please be aware of that your dns can be spoofed. Make sure that your dns 
configurations are correct.
   [] 2026-03-06 09:01:50,986 WARN  [c.h.i.AddressPicker           ] [main] - 
[LOCAL] [seatunnel] [5.1] You configured your member address as host name. 
Please be aware of that your dns can be spoofed. Make sure that your dns 
configurations are correct.
   [] 2026-03-06 09:01:50,986 INFO  [c.h.i.AddressPicker           ] [main] - 
[LOCAL] [seatunnel] [5.1] Resolving domain name 'st-master' to address(es): 
[10.0.15.8]
   [] 2026-03-06 09:01:50,986 INFO  [c.h.i.AddressPicker           ] [main] - 
[LOCAL] [seatunnel] [5.1] Resolving domain name 'st-worker2' to address(es): 
[10.0.15.5]
   [] 2026-03-06 09:01:50,987 INFO  [c.h.i.AddressPicker           ] [main] - 
[LOCAL] [seatunnel] [5.1] Interfaces is disabled, trying to pick one address 
from TCP-IP config addresses: [st-worker1/10.0.15.2, st-master/10.0.15.8, 
st-worker2/10.0.15.5]
   [] 2026-03-06 09:01:50,987 WARN  [c.h.i.AddressPicker           ] [main] - 
[LOCAL] [seatunnel] [5.1] Could not find a matching address to start with! 
Picking one of non-loopback addresses.
   SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
   SLF4J: Defaulting to no-operation (NOP) logger implementation
   SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further 
details.
   [] 2026-03-06 09:01:51,226 INFO  [o.a.s.e.s.SeaTunnelServer     ] [main] - 
SeaTunnel server start...
   [] 2026-03-06 09:01:51,227 INFO  [c.h.system                    ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Based on Hazelcast IMDG version: 5.1.0 
(20220228 - 21f20e7)
   [] 2026-03-06 09:01:51,227 INFO  [c.h.system                    ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Cluster name: seatunnel
   [] 2026-03-06 09:01:51,227 INFO  [c.h.system                    ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] 
                                                            
    _____               _____                             _ 
   /  ___|             |_   _|                           | |
   \ `--.   ___   __ _   | |   _   _  _ __   _ __    ___ | |
    `--. \ / _ \ / _` |  | |  | | | || '_ \ | '_ \  / _ \| |
   /\__/ /|  __/| (_| |  | |  | |_| || | | || | | ||  __/| |
   \____/  \___| \__,_|  \_/   \__,_||_| |_||_| |_| \___||_|
                                                            
   
   [] 2026-03-06 09:01:51,227 INFO  [c.h.system                    ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Copyright © 2021-2024 The Apache Software 
Foundation. Apache SeaTunnel, SeaTunnel, and its feather logo are trademarks of 
The Apache Software Foundation.
   [] 2026-03-06 09:01:51,227 INFO  [c.h.system                    ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Integrity Checker is disabled. Fail-fast on 
corrupted executables will not be performed.
   To enable integrity checker do one of the following: 
     - Change member config using Java API: 
config.setIntegrityCheckerEnabled(true);
     - Change XML/YAML configuration property: Set 
hazelcast.integrity-checker.enabled to true
     - Add system property: -Dhz.integritychecker.enabled=true (for Hazelcast 
embedded, works only when loading config via Config.load)
     - Add environment variable: HZ_INTEGRITYCHECKER_ENABLED=true (recommended 
when running container image. For Hazelcast embedded, works only when loading 
config via Config.load)
   [] 2026-03-06 09:01:51,228 INFO  [c.h.system                    ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] The Jet engine is disabled.
   To enable the Jet engine on the members, do one of the following:
     - Change member config using Java API: 
config.getJetConfig().setEnabled(true)
     - Change XML/YAML configuration property: Set hazelcast.jet.enabled to true
     - Add system property: -Dhz.jet.enabled=true (for Hazelcast embedded, 
works only when loading config via Config.load)
     - Add environment variable: HZ_JET_ENABLED=true (recommended when running 
container image. For Hazelcast embedded, works only when loading config via 
Config.load)
   [] 2026-03-06 09:01:51,382 INFO  [c.h.s.security                ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Enable DEBUG/FINE log level for log 
category com.hazelcast.system.security  or use 
-Dhazelcast.security.recommendations system property to see 🔒 security 
recommendations and the status of current config.
   [] 2026-03-06 09:01:51,412 INFO  [o.a.s.e.s.SeaTunnelNodeContext] [main] - 
Using LiteNodeDropOutTcpIpJoiner TCP/IP discovery
   [] 2026-03-06 09:01:51,413 WARN  [c.h.c.CPSubsystem             ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] CP Subsystem is not enabled. CP data 
structures will operate in UNSAFE mode! Please note that UNSAFE mode will not 
provide strong consistency guarantees.
   [] 2026-03-06 09:01:51,498 INFO  [.c.c.DefaultClassLoaderService] [main] - 
start classloader service with cache mode
   [] 2026-03-06 09:01:51,501 INFO  [c.h.i.c.AbstractConfigLocator ] [main] - 
Loading configuration '/opt/seatunnel/config/seatunnel.yaml' from System 
property 'seatunnel.config'
   [] 2026-03-06 09:01:51,501 INFO  [c.h.i.c.AbstractConfigLocator ] [main] - 
Using configuration file at /opt/seatunnel/config/seatunnel.yaml
   [] 2026-03-06 09:01:51,503 INFO  [amlSeaTunnelDomConfigProcessor] [main] - 
Dynamic slot is enabled, the schedule strategy is set to REJECT
   [] 2026-03-06 09:01:51,503 INFO  [c.h.i.c.AbstractConfigLocator ] [main] - 
Loading configuration '/opt/seatunnel/config/hazelcast-worker.yaml' from System 
property 'hazelcast.config'
   [] 2026-03-06 09:01:51,503 INFO  [c.h.i.c.AbstractConfigLocator ] [main] - 
Using configuration file at /opt/seatunnel/config/hazelcast-worker.yaml
   [] 2026-03-06 09:01:51,507 WARN  [o.a.s.e.s.TaskExecutionService] 
[pool-3-thread-1] - [172.18.0.3]:5801 [seatunnel] [5.1] The Node is not ready 
yet, Node state STARTING,looking forward to the next scheduling
   [] 2026-03-06 09:01:51,507 INFO  [o.a.s.e.s.TaskExecutionService] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Created new BusWork : 173070089
   [] 2026-03-06 09:01:51,517 INFO  [o.a.s.e.s.JettyService        ] [main] - 
SeaTunnel REST service will start on port 8080
   [] 2026-03-06 09:01:51,521 INFO  [o.a.s.s.o.e.j.u.log           ] [main] - 
Logging initialized @1089ms to 
org.apache.seatunnel.shade.org.eclipse.jetty.util.log.Slf4jLog
   [] 2026-03-06 09:01:51,515 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:01:51,547 WARN  [a.s.s.o.e.j.s.h.ContextHandler] [main] - 
Empty contextPath
   [] 2026-03-06 09:01:51,554 INFO  [o.a.s.s.o.e.j.s.Server        ] [main] - 
jetty-9.4.56.v20240826; built: 2024-08-26T17:15:05.868Z; git: 
ec6782ff5ead824dabdcf47fa98f90a4aedff401; jvm 1.8.0_342-b07
   [] 2026-03-06 09:01:51,569 INFO  [o.a.s.s.o.e.j.s.session       ] [main] - 
DefaultSessionIdManager workerName=node0
   [] 2026-03-06 09:01:51,569 INFO  [o.a.s.s.o.e.j.s.session       ] [main] - 
No SessionScavenger set, using defaults
   [] 2026-03-06 09:01:51,569 INFO  [o.a.s.s.o.e.j.s.session       ] [main] - 
node0 Scavenging every 600000ms
   [] 2026-03-06 09:01:51,627 INFO  [a.s.s.o.e.j.s.h.ContextHandler] [main] - 
Started o.a.s.s.o.e.j.s.ServletContextHandler@18b74ea{/,null,AVAILABLE}
   [] 2026-03-06 09:01:51,631 INFO  [.s.s.o.e.j.s.AbstractConnector] [main] - 
Started ServerConnector@4a37191a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}
   [] 2026-03-06 09:01:51,631 INFO  [o.a.s.s.o.e.j.s.Server        ] [main] - 
Started @1199ms
   [] 2026-03-06 09:01:51,672 INFO  [c.h.i.d.Diagnostics           ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Diagnostics disabled. To enable add 
-Dhazelcast.diagnostics.enabled=true to the JVM arguments.
   [] 2026-03-06 09:01:51,674 INFO  [c.h.c.LifecycleService        ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] [172.18.0.3]:5801 is STARTING
   [] 2026-03-06 09:01:51,697 INFO  [s.j.LiteNodeDropOutTcpIpJoiner] 
[hz.main.cached.thread-3] - [172.18.0.3]:5801 [seatunnel] [5.1] 
[st-worker1]:5802 is added to the blacklist.
   [] 2026-03-06 09:01:51,698 INFO  [s.j.LiteNodeDropOutTcpIpJoiner] 
[hz.main.cached.thread-2] - [172.18.0.3]:5801 [seatunnel] [5.1] 
[st-worker2]:5803 is added to the blacklist.
   [] 2026-03-06 09:01:51,703 INFO  [c.h.i.s.t.TcpServerConnection ] 
[hz.main.IO.thread-in-2] - [172.18.0.3]:5801 [seatunnel] [5.1] Initialized new 
cluster connection between /10.0.15.27:60131 and st-master/10.0.15.8:5801
   [] 2026-03-06 09:01:56,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:01,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:06,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:11,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:16,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:21,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:26,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:31,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:36,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:41,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:46,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:51,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:02:56,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:01,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:06,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:11,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:16,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:21,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:26,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:31,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:36,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:41,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:46,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:51,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:03:56,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:01,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:06,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:11,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:16,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:21,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:26,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:31,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:36,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:41,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:46,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:51,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:04:56,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:01,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:06,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:11,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:16,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:21,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:26,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:31,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:36,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:41,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:46,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:51,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:05:56,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:01,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:06,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:11,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:16,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:21,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:26,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:31,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:36,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:41,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:46,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:51,513 WARN  [a.s.e.s.s.s.DefaultSlotService] 
[hz.main.seaTunnel.slotService.thread] - failed send heartbeat to resource 
manager, will retry later. this address: [172.18.0.3]:5801
   [] 2026-03-06 09:06:51,834 INFO  [c.h.c.LifecycleService        ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] [172.18.0.3]:5801 is SHUTTING_DOWN
   [] 2026-03-06 09:06:51,833 ERROR [c.h.i.i.Node                  ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Could not join cluster. Shutting down now!
   [] 2026-03-06 09:06:51,835 WARN  [c.h.i.i.Node                  ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Terminating forcefully...
   [] 2026-03-06 09:06:51,835 INFO  [c.h.i.i.Node                  ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Shutting down connection manager...
   [] 2026-03-06 09:06:51,836 INFO  [c.h.i.s.t.TcpServerConnection ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Connection[id=1, 
/10.0.15.27:60131->st-master/10.0.15.8:5801, qualifier=null, 
endpoint=[172.18.0.3]:5801, remoteUuid=befa5384-2375-448f-8553-ff06408bc89b, 
alive=false, connectionType=MEMBER, planeIndex=0] closed. Reason: TcpServer is 
stopping
   [] 2026-03-06 09:06:51,837 INFO  [c.h.i.i.Node                  ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Shutting down node engine...
   [] 2026-03-06 09:06:51,843 INFO  [.s.s.o.e.j.s.AbstractConnector] [main] - 
Stopped ServerConnector@4a37191a{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}
   [] 2026-03-06 09:06:51,843 INFO  [o.a.s.s.o.e.j.s.session       ] [main] - 
node0 Stopped scavenging
   [] 2026-03-06 09:06:51,844 INFO  [a.s.s.o.e.j.s.h.ContextHandler] [main] - 
Stopped o.a.s.s.o.e.j.s.ServletContextHandler@18b74ea{/,null,STOPPED}
   [] 2026-03-06 09:06:51,845 INFO  [.c.c.DefaultClassLoaderService] [main] - 
close classloader service
   [] 2026-03-06 09:06:51,845 INFO  [o.a.s.e.s.EventService        ] 
[event-forwarder-0] - Event forward thread interrupted
   [] 2026-03-06 09:06:51,851 INFO  [c.h.i.i.NodeExtension         ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Destroying node NodeExtension.
   [] 2026-03-06 09:06:51,851 INFO  [c.h.i.i.Node                  ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Hazelcast Shutdown is completed in 16 ms.
   [] 2026-03-06 09:06:51,851 INFO  [c.h.c.LifecycleService        ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] [172.18.0.3]:5801 is SHUTDOWN
   [] 2026-03-06 09:06:51,857 WARN  [c.h.i.u.p.PhoneHome           ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Could not schedule phone home task! Most 
probably Hazelcast failed to start.
   [] 2026-03-06 09:06:51,857 INFO  [c.h.i.i.Node                  ] [main] - 
[172.18.0.3]:5801 [seatunnel] [5.1] Node is already shutting down... Waiting 
for shutdown process to complete...
   [] 2026-03-06 09:06:51,857 ERROR [o.a.s.c.s.SeaTunnel           ] [main] - 
   
   
===============================================================================
   
   
   [] 2026-03-06 09:06:51,857 ERROR [o.a.s.c.s.SeaTunnel           ] [main] - 
Fatal Error, 
   
   [] 2026-03-06 09:06:51,857 ERROR [o.a.s.c.s.SeaTunnel           ] [main] - 
Please submit bug report in https://github.com/apache/seatunnel/issues
   
   [] 2026-03-06 09:06:51,857 ERROR [o.a.s.c.s.SeaTunnel           ] [main] - 
Reason:Node failed to start! 
   
   [] 2026-03-06 09:06:51,858 ERROR [o.a.s.c.s.SeaTunnel           ] [main] - 
Exception StackTrace:java.lang.IllegalStateException: Node failed to start!
           at 
com.hazelcast.instance.impl.HazelcastInstanceImpl.<init>(HazelcastInstanceImpl.java:126)
           at 
com.hazelcast.instance.impl.HazelcastInstanceFactory.constructHazelcastInstance(HazelcastInstanceFactory.java:217)
           at 
com.hazelcast.instance.impl.HazelcastInstanceFactory.newHazelcastInstance(HazelcastInstanceFactory.java:196)
           at 
org.apache.seatunnel.engine.server.SeaTunnelServerStarter.initializeHazelcastInstance(SeaTunnelServerStarter.java:70)
           at 
org.apache.seatunnel.engine.server.SeaTunnelServerStarter.createHazelcastInstance(SeaTunnelServerStarter.java:52)
           at 
org.apache.seatunnel.core.starter.seatunnel.command.ServerExecuteCommand.execute(ServerExecuteCommand.java:84)
           at org.apache.seatunnel.core.starter.SeaTunnel.run(SeaTunnel.java:40)
           at 
org.apache.seatunnel.core.starter.seatunnel.SeaTunnelServer.main(SeaTunnelServer.java:34)
    
   Exception in thread "main" [] 2026-03-06 09:06:51,858 ERROR 
[o.a.s.c.s.SeaTunnel           ] [main] - 
   
===============================================================================
   
   
   
   java.lang.IllegalStateException: Node failed to start!
           at 
com.hazelcast.instance.impl.HazelcastInstanceImpl.<init>(HazelcastInstanceImpl.java:126)
           at 
com.hazelcast.instance.impl.HazelcastInstanceFactory.constructHazelcastInstance(HazelcastInstanceFactory.java:217)
           at 
com.hazelcast.instance.impl.HazelcastInstanceFactory.newHazelcastInstance(HazelcastInstanceFactory.java:196)
           at 
org.apache.seatunnel.engine.server.SeaTunnelServerStarter.initializeHazelcastInstance(SeaTunnelServerStarter.java:70)
           at 
org.apache.seatunnel.engine.server.SeaTunnelServerStarter.createHazelcastInstance(SeaTunnelServerStarter.java:52)
           at 
org.apache.seatunnel.core.starter.seatunnel.command.ServerExecuteCommand.execute(ServerExecuteCommand.java:84)
           at org.apache.seatunnel.core.starter.SeaTunnel.run(SeaTunnel.java:40)
           at 
org.apache.seatunnel.core.starter.seatunnel.SeaTunnelServer.main(SeaTunnelServer.java:34)
   `
   ```
   
   ### Zeta or Flink or Spark Version
   
   _No response_
   
   ### Java or Scala Version
   
   _No response_
   
   ### Screenshots
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [x] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to