Adamyuanyuan opened a new issue, #7321: URL: https://github.com/apache/seatunnel/issues/7321
### 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 When using Flink Application mode to submit Seatunnel, if the same error always occurs. 1. same as https://github.com/apache/seatunnel/issues/6622 2. Confirm that the configuration file path is correct. 3. Flink Session mode is running normally. ### SeaTunnel Version 2.3.6 ### SeaTunnel Config ```conf env { # You can set SeaTunnel environment configuration here parallelism = 1 job.mode = "STREAMING" checkpoint.interval = 2000 } source { # This is a example source plugin **only for test and demonstrate the feature source plugin** FakeSource { parallelism = 1 result_table_name = "fake" row.num = 16 schema = { fields { name = "string" age = "int" } } } # If you would like to get more information about how to configure SeaTunnel and see full list of source plugins, # please go to https://seatunnel.apache.org/docs/category/source-v2 } sink { Console { } # If you would like to get more information about how to configure SeaTunnel and see full list of sink plugins, # please go to https://seatunnel.apache.org/docs/category/sink-v2 } ``` ``` ### Running Command ```shell ${FLINK_HOME}/bin/flink run-application -d -c org.apache.seatunnel.core.starter.flink.SeaTunnelFlink -t yarn-application /mnt/apache-seatunnel-2.3.6/starter/seatunnel-flink-15-starter.jar --config hdfs:///user/root/config/v2.streaming1.conf --name test1fake ${FLINK_HOME}/bin/flink run-application -d -c org.apache.seatunnel.core.starter.flink.SeaTunnelFlink -t yarn-application /mnt/apache-seatunnel-2.3.6/starter/seatunnel-flink-15-starter.jar --config config/v2.streaming1.conf --name test1fake ``` ``` ### Error Exception ```log 2024-08-06 10:11:59,841 ERROR org.apache.seatunnel.core.starter.SeaTunnel [] - =============================================================================== 2024-08-06 10:11:59,841 ERROR org.apache.seatunnel.core.starter.SeaTunnel [] - Fatal Error, 2024-08- 06 10:11:59,841 ERROR org.apache.seatunnel.core.starter.SeaTunnel [] - Please submit bug report in https://github.com/apache/seatun 2024-08-06 10:11:59,841 ERROR org.apache.seatunnel.core.starter.SeaTunnel [] - Reason:ErrorCode:[COMMON-22], ErrorDescription:[SeaTunnel re 2024-08-06 10:11:59,842 ERROR org.apache.seatunnel.core.starter.SeaTunnel [] - Exception StackTrace:org.apache.seatunnel.common.exception.S at org.apache.seatunnel.common.exception.CommonError.fileNotExistFailed(CommonError.java:86) at org.apache.seatunnel.core.starter.utils.FileUtils.checkConfigExist(FileUtils.java:66) at org.apache.seatunnel.core.starter.flink.command.FlinkTaskExecuteCommand.execute(FlinkTaskExecuteCommand.java:50) at org.apache.seatunnel.core.starter.SeaTunnel.run(SeaTunnel.java:40) at org.apache.seatunnel.core.starter.flink.SeaTunnelFlink.main(SeaTunnelFlink.java:34) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.apache.flink.client.program.PackagedProgram.callMainMethod(PackagedProgram.java:355) ``` ``` ### Zeta or Flink or Spark Version flink-1.18.1 ### 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]
