304792747 opened a new issue, #9385: URL: https://github.com/apache/seatunnel/issues/9385
### 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  已经添加数据源  任务 => 无法获取数据源、数据库信息 ### SeaTunnel Version apache-seatunnel-web 1.0.1 apache-seatunnel-web 1.0.0 ### SeaTunnel Config ```conf vim ./config/application.yml ------------------------------------------ server: port: 8801 spring: application: name: seatunnel jackson: date-format: yyyy-MM-dd HH:mm:ss datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/seatunnel?useSSL=false&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&allowPublicKeyRetrieval=true username: root password: 123456 mvc: pathmatch: matching-strategy: ant_path_matcher jwt: expireTime: 86400 # please add key when deploy secretKey: https://github.com/apache/seatunnel algorithm: HS256 --- spring: config: activate: on-profile: h2 sql: init: schema-locations: classpath*:script/seatunnel_server_h2.sql datasource: driver-class-name: org.h2.Driver url: jdbc:h2:mem:seatunnel;MODE=MySQL;DB_CLOSE_DELAY=-1;DATABASE_TO_LOWER=true username: sa password: sa h2: console: enabled: true path: /h2 settings: trace: false web-allow-others: false ``` ### Running Command ```shell sh bin/download_datasource.sh # download jar sh bin/seatunnel-backend-daemon.sh start # run program ``` ### Error Exception ```log 2025-05-30 02:49:22.013 seatunnel centos7.9model INFO [main] [StartupInfoLogger.logStarting():55] - Starting SeatunnelApplication v1.0.1 using Java 1.8.0_412 on centos7.9model with PID 7590 (/usr/apache/apache-seatunnel-web-1.0.1-bin/libs/seatunnel-app-1.0.1.jar started by root in /usr/apache/apache-seatunnel-web-1.0.1-bin) 2025-05-30 02:49:22.022 seatunnel centos7.9model INFO [main] [SpringApplication.logStartupProfileInfo():645] - No active profile set, falling back to 1 default profile: "default" 2025-05-30 02:49:26.888 seatunnel centos7.9model INFO [main] [Log.initialized():170] - Logging initialized @8012ms to org.eclipse.jetty.util.log.Slf4jLog 2025-05-30 02:49:27.305 seatunnel centos7.9model INFO [main] [JettyServletWebServerFactory.getWebServer():166] - Server initialized with port: 8801 2025-05-30 02:49:27.312 seatunnel centos7.9model INFO [main] [Server.doStart():375] - jetty-9.4.46.v20220331; built: 2022-03-31T16:38:08.030Z; git: bc17a0369a11ecf40bb92c839b9ef0a8ac50ea18; jvm 1.8.0_412-b08 2025-05-30 02:49:27.416 seatunnel centos7.9model INFO [main] [ContextHandler$Context.log():2368] - Initializing Spring embedded WebApplicationContext 2025-05-30 02:49:27.417 seatunnel centos7.9model INFO [main] [ServletWebServerApplicationContext.prepareWebApplicationContext():290] - Root WebApplicationContext: initialization completed in 4642 ms 2025-05-30 02:49:27.501 seatunnel centos7.9model INFO [main] [DefaultSessionIdManager.doStart():334] - DefaultSessionIdManager workerName=node0 2025-05-30 02:49:27.502 seatunnel centos7.9model INFO [main] [DefaultSessionIdManager.doStart():339] - No SessionScavenger set, using defaults 2025-05-30 02:49:27.506 seatunnel centos7.9model INFO [main] [HouseKeeper.startScavenging():132] - node0 Scavenging every 660000ms 2025-05-30 02:49:27.525 seatunnel centos7.9model INFO [main] [ContextHandler.doStart():921] - Started o.s.b.w.e.j.JettyEmbeddedWebAppContext@4f281aaf{application,/,[file:///tmp/jetty-docbase.8801.5030274412202431888/, jar:file:/usr/apache/apache-seatunnel-web-1.0.1-bin/libs/springfox-swagger-ui-2.6.1.jar!/META-INF/resources],AVAILABLE} 2025-05-30 02:49:27.526 seatunnel centos7.9model INFO [main] [Server.doStart():415] - Started @8653ms 2025-05-30 02:49:29.295 seatunnel centos7.9model INFO [main] [AbstractPluginDiscovery.<init>():113] - Load SeaTunnelSink Plugin from /usr/apache/apache-seatunnel-2.3.10/connectors/seatunnel 2025-05-30 02:49:29.296 seatunnel centos7.9model WARN [main] [AbstractPluginDiscovery.getAllPlugin():241] - plugin dir: /usr/apache/apache-seatunnel-2.3.10/connectors/seatunnel not exists, load plugin from classpath 2025-05-30 02:49:29.556 seatunnel centos7.9model INFO [main] [AbstractPluginDiscovery.<init>():113] - Load SeaTunnelSink Plugin from /usr/apache/apache-seatunnel-2.3.10/connectors/seatunnel 2025-05-30 02:49:30.037 seatunnel centos7.9model WARN [main] [AbstractMethod.addMappedStatement():405] - [org.apache.seatunnel.app.dal.mapper.JobMapper.insert] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.Insert] 2025-05-30 02:49:30.991 seatunnel centos7.9model WARN [main] [AbstractMethod.addMappedStatement():405] - [org.apache.seatunnel.app.dal.mapper.JobMetricsMapper.insert] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.Insert] 2025-05-30 02:49:31.210 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: conda.path -> /opt/anaconda3/etc/profile.d/conda.sh 2025-05-30 02:49:31.211 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: aws.access.key.id -> minioadmin 2025-05-30 02:49:31.212 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: ml.mlflow.preset_repository -> https://github.com/apache/dolphinscheduler-mlflow 2025-05-30 02:49:31.213 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: aws.secret.access.key -> minioadmin 2025-05-30 02:49:31.213 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: aws.region -> us-east-1 2025-05-30 02:49:31.213 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: data-quality.jar.name -> libs/dolphinscheduler-data-quality-2.4.3.jar 2025-05-30 02:49:31.213 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: alert.rpc.port -> 50052 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: process.task.log.collect.threadPool.size -> 100 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: fs.defaultFS -> file:/// 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: yarn.resourcemanager.ha.rm.ids -> 192.168.xx.xx,192.168.xx.xx 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: setTenantOwner.enable -> false 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: resource.upload.path -> /tmp/dolphinscheduler 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: system.internal.permission.filter -> 550,551,552,567 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: git.resource.filter -> . 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: java.security.krb5.conf.path -> /opt/krb5.conf 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: development.state -> true 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: datasource.encryption.salt -> !@#$%^&* 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: shell.env_source_list -> /etc/profile,~/.bash_profile 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: ml.mlflow.preset_repository_version -> "main" 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: resource.storage.type -> HDFS 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: kerberos.expire.time -> 2 2025-05-30 02:49:31.214 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: datasource.encryption.enable -> false 2025-05-30 02:49:31.215 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: file.type.restricted.list -> html,HTML,php,PHP 2025-05-30 02:49:31.215 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: file.name.restricted.content -> XSS 2025-05-30 02:49:31.215 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: login.user.keytab.username -> [email protected] 2025-05-30 02:49:31.215 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: data.basedir.path -> /tmp/dolphinscheduler 2025-05-30 02:49:31.215 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: task.running.ignore_unresolvable_placeholders -> true 2025-05-30 02:49:31.215 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: yarn.application.status.address -> http://ds1:%s/ws/v1/cluster/apps/%s 2025-05-30 02:49:31.215 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: login.user.keytab.path -> /opt/hdfs.headless.keytab 2025-05-30 02:49:31.216 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: aws.endpoint -> http://localhost:9000 2025-05-30 02:49:31.216 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: sudo.enable -> true 2025-05-30 02:49:31.216 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: ws.support.datasources -> JDBC-ClickHouse,JDBC-StarRocks,JDBC-Redshift,JDBC-DAMENG,JDBC-Postgres,JDBC-Oracle,JDBC-Mysql,JDBC-SQLServer,SSH,PROXY 2025-05-30 02:49:31.216 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: hdfs.root.user -> hdfs 2025-05-30 02:49:31.216 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: support.hive.oneSession -> false 2025-05-30 02:49:31.216 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: yarn.job.history.status.address -> http://ds1:19888/ws/v1/history/mapreduce/jobs/%s 2025-05-30 02:49:31.216 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: hadoop.security.authentication.startup.state -> false 2025-05-30 02:49:31.217 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: resource.manager.httpaddress.port -> 8088 2025-05-30 02:49:31.217 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$0():63] - Get property from /common.properties: git.resource.base.dir -> /tmp/dolphinscheduler/git/ 2025-05-30 02:49:31.218 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.cpu.isalist 2025-05-30 02:49:31.219 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: seatunnel-web.logs.path 2025-05-30 02:49:31.219 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.io.unicode.encoding 2025-05-30 02:49:31.220 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.cpu.endian 2025-05-30 02:49:31.220 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: spring.config.name 2025-05-30 02:49:31.221 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.vendor.url.bug 2025-05-30 02:49:31.221 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: file.separator 2025-05-30 02:49:31.222 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.specification.maintenance.version 2025-05-30 02:49:31.222 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.awt.headless 2025-05-30 02:49:31.223 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.vendor 2025-05-30 02:49:31.223 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.boot.class.path 2025-05-30 02:49:31.224 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.ext.dirs 2025-05-30 02:49:31.225 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.version 2025-05-30 02:49:31.225 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.vm.info 2025-05-30 02:49:31.226 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: awt.toolkit 2025-05-30 02:49:31.226 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: user.language 2025-05-30 02:49:31.227 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.specification.vendor 2025-05-30 02:49:31.227 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.java.command 2025-05-30 02:49:31.227 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.home 2025-05-30 02:49:31.228 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.arch.data.model 2025-05-30 02:49:31.228 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.vm.specification.version 2025-05-30 02:49:31.229 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.class.path 2025-05-30 02:49:31.229 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: user.name 2025-05-30 02:49:31.230 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: file.encoding 2025-05-30 02:49:31.230 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.specification.version 2025-05-30 02:49:31.230 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.awt.printerjob 2025-05-30 02:49:31.230 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: user.timezone 2025-05-30 02:49:31.230 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: user.home 2025-05-30 02:49:31.230 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: os.version 2025-05-30 02:49:31.231 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.management.compiler 2025-05-30 02:49:31.231 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.specification.name 2025-05-30 02:49:31.232 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.class.version 2025-05-30 02:49:31.232 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: spring.beaninfo.ignore 2025-05-30 02:49:31.233 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.library.path 2025-05-30 02:49:31.233 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: jetty.git.hash 2025-05-30 02:49:31.233 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.jnu.encoding 2025-05-30 02:49:31.234 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: FILE_LOG_CHARSET 2025-05-30 02:49:31.234 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: spring.config.location 2025-05-30 02:49:31.235 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: os.name 2025-05-30 02:49:31.235 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.vm.specification.vendor 2025-05-30 02:49:31.235 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.io.tmpdir 2025-05-30 02:49:31.235 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: line.separator 2025-05-30 02:49:31.235 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: CONSOLE_LOG_CHARSET 2025-05-30 02:49:31.236 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.endorsed.dirs 2025-05-30 02:49:31.236 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: os.arch 2025-05-30 02:49:31.236 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.awt.graphicsenv 2025-05-30 02:49:31.237 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.runtime.version 2025-05-30 02:49:31.237 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: PID 2025-05-30 02:49:31.238 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.vm.specification.name 2025-05-30 02:49:31.239 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: user.dir 2025-05-30 02:49:31.240 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: user.country 2025-05-30 02:49:31.240 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.java.launcher 2025-05-30 02:49:31.240 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.os.patch.level 2025-05-30 02:49:31.241 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.vm.name 2025-05-30 02:49:31.241 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: file.encoding.pkg 2025-05-30 02:49:31.241 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: path.separator 2025-05-30 02:49:31.241 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.vm.vendor 2025-05-30 02:49:31.242 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.vendor.url 2025-05-30 02:49:31.242 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: sun.boot.library.path 2025-05-30 02:49:31.242 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.vm.version 2025-05-30 02:49:31.242 seatunnel centos7.9model INFO [main] [PropertyUtils.lambda$loadPropertyFile$1():76] - Overriding property from system property: java.runtime.name 2025-05-30 02:49:31.245 seatunnel centos7.9model INFO [main] [PropertyUtils.loadPropertyFile():85] - Overriding property java.home with system environment variable JAVA_HOME 2025-05-30 02:49:31.255 seatunnel centos7.9model INFO [main] [AbstractPluginDiscovery.<init>():113] - Load SeaTunnelSink Plugin from /usr/apache/apache-seatunnel-2.3.10/connectors/seatunnel 2025-05-30 02:49:35.509 seatunnel centos7.9model INFO [main] [ClientLoggingService$DefaultLogger.log():104] - hz.client_1 [seatunnel] [5.1] Running with 2 response threads, dynamic=true 2025-05-30 02:49:35.704 seatunnel centos7.9model INFO [main] [ClientLoggingService$DefaultLogger.log():104] - hz.client_1 [seatunnel] [5.1] HazelcastClient 5.1 (20220228 - 21f20e7) is STARTING 2025-05-30 02:49:35.708 seatunnel centos7.9model INFO [main] [ClientLoggingService$DefaultLogger.log():104] - hz.client_1 [seatunnel] [5.1] HazelcastClient 5.1 (20220228 - 21f20e7) is STARTED 2025-05-30 02:49:35.784 seatunnel centos7.9model INFO [main] [ClientLoggingService$DefaultLogger.log():104] - hz.client_1 [seatunnel] [5.1] Trying to connect to cluster: seatunnel 2025-05-30 02:49:35.793 seatunnel centos7.9model INFO [main] [ClientLoggingService$DefaultLogger.log():104] - hz.client_1 [seatunnel] [5.1] Trying to connect to [localhost]:5801 2025-05-30 02:49:35.921 seatunnel centos7.9model INFO [main] [ClientLoggingService$DefaultLogger.log():104] - hz.client_1 [seatunnel] [5.1] HazelcastClient 5.1 (20220228 - 21f20e7) is CLIENT_CONNECTED 2025-05-30 02:49:35.923 seatunnel centos7.9model INFO [main] [ClientLoggingService$DefaultLogger.log():104] - hz.client_1 [seatunnel] [5.1] Authenticated with server [localhost]:5801:32ed5fd3-c479-46fc-810a-cb15ed5f41e6, server version: 5.1, local address: /127.0.0.1:46078 2025-05-30 02:49:35.928 seatunnel centos7.9model INFO [main] [ClientLoggingService$DefaultLogger.log():104] - hz.client_1 [seatunnel] [5.1] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments. 2025-05-30 02:49:35.991 seatunnel centos7.9model INFO [hz.client_1.event-3] [ClientLoggingService$DefaultLogger.log():104] - hz.client_1 [seatunnel] [5.1] Members [1] { Member [localhost]:5801 - 32ed5fd3-c479-46fc-810a-cb15ed5f41e6 } 2025-05-30 02:49:36.109 seatunnel centos7.9model INFO [main] [AbstractLogger.info():69] - Client statistics is enabled with period 5 seconds. 2025-05-30 02:49:36.264 seatunnel centos7.9model WARN [main] [GroovyTemplateAutoConfiguration$GroovyMarkupConfiguration.checkTemplateLocationExists():86] - Cannot find template location: classpath:/templates/ (please add some templates, check your Groovy configuration, or set spring.groovy.template.check-template-location=false) 2025-05-30 02:49:37.196 seatunnel centos7.9model INFO [main] [ContextHandler$Context.log():2368] - Initializing Spring DispatcherServlet 'dispatcherServlet' 2025-05-30 02:49:37.197 seatunnel centos7.9model INFO [main] [FrameworkServlet.initServletBean():525] - Initializing Servlet 'dispatcherServlet' 2025-05-30 02:49:37.201 seatunnel centos7.9model INFO [main] [FrameworkServlet.initServletBean():547] - Completed initialization in 3 ms 2025-05-30 02:49:37.235 seatunnel centos7.9model INFO [main] [AbstractConnector.doStart():333] - Started ServerConnector@b5c6a30{HTTP/1.1, (http/1.1)}{0.0.0.0:8801} 2025-05-30 02:49:37.242 seatunnel centos7.9model INFO [main] [JettyWebServer.start():172] - Jetty started on port(s) 8801 (http/1.1) with context path '/' 2025-05-30 02:49:37.243 seatunnel centos7.9model INFO [main] [DocumentationPluginsBootstrapper.start():120] - Context refreshed 2025-05-30 02:49:37.291 seatunnel centos7.9model INFO [main] [DocumentationPluginsBootstrapper.start():123] - Found 1 custom documentation plugin(s) 2025-05-30 02:49:37.336 seatunnel centos7.9model INFO [main] [ApiListingReferenceScanner.scan():41] - Scanning for api listing references 2025-05-30 02:49:37.792 seatunnel centos7.9model INFO [main] [CachingOperationNameGenerator.startingWith():40] - Generating unique operation named: listAllTransformUsingGET_1 2025-05-30 02:49:37.826 seatunnel centos7.9model INFO [main] [CachingOperationNameGenerator.startingWith():40] - Generating unique operation named: listSinkUsingGET_1 2025-05-30 02:49:37.846 seatunnel centos7.9model INFO [main] [CachingOperationNameGenerator.startingWith():40] - Generating unique operation named: listSourceUsingGET_1 2025-05-30 02:49:37.859 seatunnel centos7.9model INFO [main] [CachingOperationNameGenerator.startingWith():40] - Generating unique operation named: syncUsingGET_1 2025-05-30 02:49:38.071 seatunnel centos7.9model INFO [main] [CachingOperationNameGenerator.startingWith():40] - Generating unique operation named: getJobDefinitionUsingGET_1 2025-05-30 02:49:39.244 seatunnel centos7.9model INFO [main] [StartupInfoLogger.logStarted():61] - Started SeatunnelApplication in 19.237 seconds (JVM running for 20.371) 2025-05-30 02:50:33.797 seatunnel centos7.9model INFO [qtp1217347025-22] [HikariDataSource.getConnection():110] - HikariPool-1 - Starting... 2025-05-30 02:50:34.383 seatunnel centos7.9model INFO [qtp1217347025-22] [HikariDataSource.getConnection():123] - HikariPool-1 - Start completed. 2025-05-30 02:50:34.904 seatunnel centos7.9model WARN [qtp1217347025-21] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:50:37.921 seatunnel centos7.9model WARN [qtp1217347025-22] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:50:37.923 seatunnel centos7.9model WARN [qtp1217347025-22] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:50:37.941 seatunnel centos7.9model WARN [qtp1217347025-66] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:50:37.943 seatunnel centos7.9model WARN [qtp1217347025-19] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:50:37.946 seatunnel centos7.9model WARN [qtp1217347025-15] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:51:13.477 seatunnel centos7.9model WARN [qtp1217347025-21] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:51:15.581 seatunnel centos7.9model WARN [qtp1217347025-20] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:51:15.582 seatunnel centos7.9model WARN [qtp1217347025-20] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:51:15.583 seatunnel centos7.9model WARN [qtp1217347025-21] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:51:15.588 seatunnel centos7.9model WARN [qtp1217347025-15] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:51:15.589 seatunnel centos7.9model WARN [qtp1217347025-19] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:51:20.629 seatunnel centos7.9model WARN [qtp1217347025-64] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:51:20.630 seatunnel centos7.9model WARN [qtp1217347025-64] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:51:20.633 seatunnel centos7.9model WARN [qtp1217347025-64] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:55:45.248 seatunnel centos7.9model WARN [qtp1217347025-20] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel 2025-05-30 02:55:45.249 seatunnel centos7.9model WARN [qtp1217347025-17] [SeatunnelPermissionServiceImpl.funcPermissionCheck():38] - func permission check in seatunnel ``` ### Zeta or Flink or Spark Version _No response_ ### Java or Scala Version _No response_ ### Screenshots  ### Are you willing to submit PR? - [x] 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]
