lazybird23 opened a new issue, #5266:
URL: https://github.com/apache/seatunnel/issues/5266

   ### 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
   
   kafka source consumer only one data ,but starrocks is written multiple 
times。 
   
   ### SeaTunnel Version
   
   2.3.2
   
   ### SeaTunnel Config
   
   ```conf
   env {
     execution.parallelism = 1
     job.mode = "STREAMING"
     checkpoint.interval = 5000
   }
   
   source {
     Kafka {
       bootstrap.servers = 
"bd-test-master0001:9092,bd-test-master0002:9092,bd-test-master0003:9092"
       consumer.group = "jt_test_seatunnel"
       topic = "dwd-rt-kfk-sys-service-log-detail-test02"
       result_table_name = test
       #format = json # default
       #format_error_handle_way = skip
       schema = {
         fields {
           recruit_date = "date"
           region_num = "int"
           num_plate = "int"
           tel = "int"
           id = "int"
           password = "string"
           name = "string"
           profile = "string"
           ispass = "int"
         }
       }
       #field_delimiter = "," #default
       kafka.config = {
         client.id = client_1
         #max.poll.records=100 需要引号
         max.poll.records = "10000"
         auto.offset.reset = "earliest"
         enable.auto.commit = "true"
       }
     }
   }
   
   sink {
     StarRocks {
       nodeUrls = 
["bd-test-master0001:18030","bd-test-master0002:18030","bd-test-master0003:18030"]
       base-url = "jdbc:mysql://bd-test-master0003:19030/"
       username = root
       password = "password"
       database = "cloud_db"
       table = "detail_demo_hdfs"
       batch_max_rows = 10000
       # starrocks.config = {
       #   format = "CSV"
       #   column_separator = "\\x01"
       #   row_delimiter = "\\x02"
       # }
     }
   }
   ```
   
   
   ### Running Command
   
   ```shell
   seatunnel.sh cluster mode
   ```
   
   
   ### Error Exception
   
   ```log
   no error
   ```
   
   
   ### Zeta or 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