wangsvip opened a new issue, #3595: URL: https://github.com/apache/incubator-seatunnel/issues/3595
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues. ### What happened An error is reported when the program is decompressed!    ### SeaTunnel Version 2.3.0-beta ### SeaTunnel Config ```conf env { spark.app.name = "init_seatunnel_so_refund_application" spark.executor.instances = 10 spark.executor.cores = 4 spark.executor.memory = "8g" #spark.executor.memoryOverhead = "1g" spark.driver.memory = "10g" spark.driver.cores = 4 spark.sql.adaptive.enabled = "true" spark.master = "yarn" spark.yarn.queue = "root.users.batch" } source { jdbc { jdbc.connect_timeout = 10000 jdbc.socket_timeout = 10000 jdbc.partitionColumn = "id" jdbc.numPartitions = 50 driver = "com.mysql.jdbc.Driver" url = "jdbc:mysql://prod.cloud.bz:24001/db_ods?useSSL=false" user = "" password = "" table = "so_refund_application" result_table_name= "result_so_refund_application" } } transform { sql { sql = "select id, version, code, type from result_pac_so_refund_application where bi_create_time >= '2022-11-01'" } } sink { doris { fenodes = "10..101:8030" batch_size = 10000 user = "" password = "" database = "db_working" table = "so_refund_application" doris.columns = "id, version, code, type" } } ``` ### Running Command ```shell sh -x /service/software/seatunnel/bin/start-seatunnel-spark.sh --master yarn --deploy-mode cluster --config /home/init_seatunnel_so_refund_application.conf ``` ### Error Exception ```log 22/11/29 11:26:49 ERROR command.BaseTaskExecuteCommand: failed to decompress plugins.tar.gz java.lang.IllegalStateException: Bad zip entry at org.apache.seatunnel.core.base.utils.CompressionUtils.unTar(CompressionUtils.java:109) at org.apache.seatunnel.core.base.command.BaseTaskExecuteCommand.deployModeCheck(BaseTaskExecuteCommand.java:140) at org.apache.seatunnel.core.base.command.BaseTaskExecuteCommand.baseCheckConfig(BaseTaskExecuteCommand.java:52) at org.apache.seatunnel.core.spark.command.SparkTaskExecuteCommand.execute(SparkTaskExecuteCommand.java:59) at org.apache.seatunnel.core.base.Seatunnel.run(Seatunnel.java:39) at org.apache.seatunnel.core.spark.SeatunnelSpark.main(SeatunnelSpark.java:33) 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.spark.deploy.yarn.ApplicationMaster$$anon$2.run(ApplicationMaster.scala:688) ``` ### Flink or Spark Version spark 2.4.0 ### Java or Scala Version java 1.8 ### Screenshots  ### 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]
