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

   ### 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
   
   I am creating a new sink for the redission, and I saw that the key for the 
redission was successfully written, but the printed result was not successfully 
written; 
   ***********************************************
   Start Time                : 2024-07-22 01:15:08
   End Time                  : 2024-07-22 01:15:10
   Total Time(s)             :                   1
   Total Read Count          :                   2
   Total Write Count         :                   0
   Total Failed Count        :                   2
   ***********************************************
   
   ### SeaTunnel Version
   
   2.3.4
   
   ### SeaTunnel Config
   
   ```conf
   env {
       parallelism = 1
       job.mode = "BATCH"
   }
   source {
       Kafka {
         schema = {
             fields {
                 measuredt = "string"
                 parmvalue = "double"
                 mpointId = "string"
                 unitId = "string"
                 id = "string"
             }
         }
         bootstrap.servers = "132.120.132.56:9092"
         topic = "seatunnel-kafka-in"
         consumer.group = "seatunnel-test"
         result_table_name="mpoint_kafka_stream"
         kafka.config = {
           client.id = client_sea
           max.poll.records = 500
           auto.offset.reset = "earliest"
           enable.auto.commit = "false"
         }
     }
   }
    
   transform {
      Sql {
       source_table_name = ["mpoint_kafka_stream"]
       result_table_name = "mpoint_kafka_stream_filter"
       query = "select measuredt as time ,parmvalue as mpointValue,mpointId,id 
from mpoint_kafka_stream;"
     }
   }
    
   sink {
     
     Redission {
       source_table_name = ["mpoint_kafka_stream_filter"]
       host = 132.120.132.71
       port = 6379
       auth = "ZAQwsx@2008"
     }
    
   }
   ```
   
   
   ### Running Command
   
   ```shell
   ./bin/seatunnel.sh --config ./config/kafkatosqlserverAredission.conf
   ```
   
   
   ### Error Exception
   
   ```log
   no errors
   ```
   
   
   ### Zeta or Flink or Spark Version
   
   _No response_
   
   ### Java or Scala Version
   
   java1.8
   
   ### Screenshots
   
   ![Uploading 1721626277243.jpg…]()
   
   
   
   ### 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: commits-unsubscr...@seatunnel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to