chaplinthink opened a new issue, #4294:
URL: https://github.com/apache/incubator-seatunnel/issues/4294

   ### 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
   
   I run a ETL job for MySQL-> StarRocks on Seatunnel Engine, it reports the 
error. 
   
   ### SeaTunnel Version
   
   2.3.1
   
   ### SeaTunnel Config
   
   ```conf
   env {
     execution.parallelism = 1
     job.mode = "STREAMING"
     checkpoint.interval = 2000
     
   }
   
   
   source {
       Kafka {
           bootstrap.servers = "ip:9092"
           topic = "ss"
           start_mode = latest
           consumer.group = "ss"        
           format = canal-json
           partition-discovery.interval-millis = 200    
           schema = {
               fields {
                                    id = "string"
                                 user_id = "string"
                                 src = "string"
        
                 }
               }
       }
   }
   
   
   sink {
   
    StarRocks {
           nodeUrls = ["ip:8030"]
           base-url = "jdbc:mysql://ip:9030/test"
           username = "a"
           password = "1234"
           database = "test"
           table = "test1"
           batch_max_rows = 10
           sink.properties.format = "JSON"
           sink.properties.strip_outer_array = true
           enable_upsert_delete = true
      }
   }
   ```
   
   
   ### Running Command
   
   ```shell
   $SEATUNNEL_HOME/bin/seatunnel.sh --config 
$SEATUNNEL_HOME/config/v2.batch.config.template
   ```
   
   
   ### Error Exception
   
   ```log
   2023-03-06 14:36:19,973 ERROR 
org.apache.seatunnel.engine.server.CoordinatorService - [ide-sr01]:5801 
[seatunnel_default_cluster] [5.1] submit job 685133589397897217 error 
java.lang.IllegalArgumentException: No scheme in default FS: /tmp/
        at org.apache.hadoop.fs.FileSystem.getDefaultUri(FileSystem.java:238)
        at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:227)
        at 
org.apache.seatunnel.engine.checkpoint.storage.hdfs.HdfsStorage.initStorage(HdfsStorage.java:68)
        at 
org.apache.seatunnel.engine.checkpoint.storage.hdfs.HdfsStorage.<init>(HdfsStorage.java:57)
        at 
org.apache.seatunnel.engine.checkpoint.storage.hdfs.common.HdfsFileStorageInstance.getOrCreateStorage(HdfsFileStorageInstance.java:53)
        at 
org.apache.seatunnel.engine.checkpoint.storage.hdfs.HdfsStorageFactory.create(HdfsStorageFactory.java:75)
        at 
org.apache.seatunnel.engine.server.checkpoint.CheckpointManager.<init>(CheckpointManager.java:101)
        at 
org.apache.seatunnel.engine.server.master.JobMaster.initCheckPointManager(JobMaster.java:240)
        at 
org.apache.seatunnel.engine.server.master.JobMaster.init(JobMaster.java:223)
        at 
org.apache.seatunnel.engine.server.CoordinatorService.lambda$submitJob$4(CoordinatorService.java:417)
        at 
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
        at java.util.concurrent.FutureTask.run(FutureTask.java:266)
        at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
        at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
        at java.lang.Thread.run(Thread.java:750)
   ```
   
   
   ### 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