maerman13 opened a new issue, #8107: URL: https://github.com/apache/seatunnel/issues/8107
### 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 SeaTunnel 2.3.8 + Apache Flink Flink engine + Streaming mode. Kafka source connector doesn't capture new data from topic, but there are no exception while execution. New data appears in topic, but doesn't transfer to Redis. In Batch mode everything works, but we need streaming mode with flink. ### SeaTunnel Version SeaTunnel 2.3.8 ### SeaTunnel Config ```conf # Defining the runtime environment env { parallelism = 1 job.mode = "STREAMING" job.name=SeaTunnel_Job_Kafka_Redis_Streaming shade.identifier = "base64" execution.checkpoint.interval = 60000 } source { Kafka { schema = { fields { age = "int" } } format = text field_delimiter = "#" topic = "registrations" bootstrap.servers = "_" commit_on_checkpoint=false poll.timeout = 1000 start_mode = "earliest" kafka.config = { auto.offset.reset = "earliest" enable.auto.commit = "false" client.id = client_1 } } } sink { Redis { host = "_" port = 6379 key = age data_type = hash auth = "_" batch_size = 1 } } ``` ### Running Command ```shell slatunnel flink 15 command ``` ### Error Exception ```log No errors, task work without error, but there no new data ``` ### Zeta or Flink or Spark Version Apache Flink ### 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]
