yewujie1025 opened a new issue, #6127: URL: https://github.com/apache/seatunnel/issues/6127
### 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 2024-01-04 10:20:36,952 ERROR org.apache.seatunnel.core.starter.SeaTunnel - =============================================================================== 2024-01-04 10:20:36,953 ERROR org.apache.seatunnel.core.starter.SeaTunnel - Fatal Error, 2024-01-04 10:20:36,953 ERROR org.apache.seatunnel.core.starter.SeaTunnel - Please submit bug report in https://github.com/apache/seatunnel/issues 2024-01-04 10:20:36,953 ERROR org.apache.seatunnel.core.starter.SeaTunnel - Reason:Plugin PluginIdentifier{engineType='seatunnel', pluginType='source', pluginName='jdbc'} not found. 2024-01-04 10:20:36,956 ERROR org.apache.seatunnel.core.starter.SeaTunnel - Exception StackTrace:java.lang.RuntimeException: Plugin PluginIdentifier{engineType='seatunnel', pluginType='source', pluginName='jdbc'} not found. at org.apache.seatunnel.plugin.discovery.AbstractPluginDiscovery.createPluginInstance(AbstractPluginDiscovery.java:223) at org.apache.seatunnel.plugin.discovery.AbstractPluginDiscovery.createPluginInstance(AbstractPluginDiscovery.java:178) at org.apache.seatunnel.core.starter.flink.execution.SourceExecuteProcessor.initializePlugins(SourceExecuteProcessor.java:133) at org.apache.seatunnel.core.starter.flink.execution.FlinkAbstractPluginExecuteProcessor.<init>(FlinkAbstractPluginExecuteProcessor.java:67) at org.apache.seatunnel.core.starter.flink.execution.SourceExecuteProcessor.<init>(SourceExecuteProcessor.java:58) at org.apache.seatunnel.core.starter.flink.execution.FlinkExecution.<init>(FlinkExecution.java:87) at org.apache.seatunnel.core.starter.flink.command.FlinkTaskExecuteCommand.execute(FlinkTaskExecuteCommand.java:59) at org.apache.seatunnel.core.starter.SeaTunnel.run(SeaTunnel.java:40) at org.apache.seatunnel.example.flink.v2.SeaTunnelApiExample.main(SeaTunnelApiExample.java:40) ### SeaTunnel Version 2.3.3-release ### SeaTunnel Config ```conf # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # env { parallelism = 1 job.mode = "BATCH" } # source { # jdbc { # url = "jdbc:mysql://mysql-e2e:3306/seatunnel" # driver = "com.mysql.cj.jdbc.Driver" # connection_check_timeout_sec = 100 # user = "root" # password = "Abc!@#135_seatunnel" # # query = "select * from source;" # properties { # useSSL=false # rewriteBatchedStatements=true # } # } # } env { parallelism = 10 job.mode = "BATCH" } source { jdbc { url = "jdbc:mysql://localhost:3306/sys?serverTimezone=GMT%2b8" driver = "com.mysql.cj.jdbc.Driver" connection_check_timeout_sec = 100 user = "root" password = "root" query = "select * from user" partition_column = "id" partition_num = 10 # Read start boundary #partition_lower_bound = ... # Read end boundary #partition_upper_bound = ... } } sink { Console {} } ``` ### Running Command ```shell SeaTunnelApiExample ``` ### Error Exception ```log 2024-01-04 10:20:36,953 ERROR org.apache.seatunnel.core.starter.SeaTunnel - Fatal Error, 2024-01-04 10:20:36,953 ERROR org.apache.seatunnel.core.starter.SeaTunnel - Please submit bug report in https://github.com/apache/seatunnel/issues 2024-01-04 10:20:36,953 ERROR org.apache.seatunnel.core.starter.SeaTunnel - Reason:Plugin PluginIdentifier{engineType='seatunnel', pluginType='source', pluginName='jdbc'} not found. 2024-01-04 10:20:36,956 ERROR org.apache.seatunnel.core.starter.SeaTunnel - Exception StackTrace:java.lang.RuntimeException: Plugin PluginIdentifier{engineType='seatunnel', pluginType='source', pluginName='jdbc'} not found. at org.apache.seatunnel.plugin.discovery.AbstractPluginDiscovery.createPluginInstance(AbstractPluginDiscovery.java:223) at org.apache.seatunnel.plugin.discovery.AbstractPluginDiscovery.createPluginInstance(AbstractPluginDiscovery.java:178) at org.apache.seatunnel.core.starter.flink.execution.SourceExecuteProcessor.initializePlugins(SourceExecuteProcessor.java:133) at org.apache.seatunnel.core.starter.flink.execution.FlinkAbstractPluginExecuteProcessor.<init>(FlinkAbstractPluginExecuteProcessor.java:67) at org.apache.seatunnel.core.starter.flink.execution.SourceExecuteProcessor.<init>(SourceExecuteProcessor.java:58) at org.apache.seatunnel.core.starter.flink.execution.FlinkExecution.<init>(FlinkExecution.java:87) at org.apache.seatunnel.core.starter.flink.command.FlinkTaskExecuteCommand.execute(FlinkTaskExecuteCommand.java:59) at org.apache.seatunnel.core.starter.SeaTunnel.run(SeaTunnel.java:40) at org.apache.seatunnel.example.flink.v2.SeaTunnelApiExample.main(SeaTunnelApiExample.java:40) 2024-01-04 10:20:36,956 ERROR org.apache.seatunnel.core.starter.SeaTunnel - =============================================================================== ``` ### Zeta or Flink or Spark Version _No response_ ### Java or Scala Version java8 ### 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: commits-unsubscr...@seatunnel.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org