ocean-zhc opened a new issue, #5006:
URL: https://github.com/apache/seatunnel/issues/5006

   ### 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
   
   source kafka  kafka.config 设置  `max.poll.records` 参数,取消则正常!
   
   ### SeaTunnel Version
   
   2.3.2 
   2.3.2-SNAPSHOT
   
   ### SeaTunnel Config
   
   ```conf
   env {
     execution.parallelism = 1
     job.mode = "STREAMING"
     execution.planner = blink
     job.name = "kafka_console_test"
     execution.checkpoint.interval = 60000
   }
   
   source {
   
     Kafka {
       result_table_name = "kafka_table"
       schema = {
         fields {
           name = "string"
           age = "int"
         }
       }
       topic = "topic1"
       bootstrap.servers = "local:19092"
       kafka.config = {
         client.id = client_1
         max.poll.records = 10000
         auto.offset.reset = "earliest"
         enable.auto.commit = "false"
       }
     }
     
   }
   
   transform {
     
   }
   
   sink {
     Hive {
       table_name = "default.user1"
       metastore_uri = "thrift://centos4:9083"
     }
   }
   ```
   
   
   ### Running Command
   
   ```shell
   ./bin/start-seatunnel-flink-15-connector-v2.sh --config 
./config/kafka2hive.conf
   ```
   
   
   ### Error Exception
   
   ```log
   
![image](https://github.com/apache/seatunnel/assets/46189785/0efddddb-9ac3-49f9-ba11-4d3dc504bf0d)
   ```
   
   
   ### Flink or Spark Version
   
   _No response_
   
   ### Java or Scala Version
   
   _No response_
   
   ### Screenshots
   
   
![image](https://github.com/apache/seatunnel/assets/46189785/0efddddb-9ac3-49f9-ba11-4d3dc504bf0d)
   
   
   ### Are you willing to submit PR?
   
   - [X] 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