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

   does redis sink must set auth properties? 
   
   I config  a  hive to redis job,  config file shows blew. I got an error " 
Application diagnostics message: User class threw exception: 
org.apache.seatunnel.shade.com.typesafe.config.ConfigException$Null: 
hive2redis.conf: 74: Configuration key 'auth' is set to null but expected 
STRING"
   
   `env {
     spark.app.name = "SeaTunnel"
     spark.executor.instances = 1
     spark.executor.cores = 1
     spark.executor.memory = "1g"
   
     queue = default
     spark.sql.catalogImplementation = "hive"
   }
   
   source {
     hive  {
       pre_sql = "SELECT id, name FROM default.result_table_name"
       result_table_name = "result_table_name"
     }
   }
   
   transform {
     sql {
       sql = "select CONCAT('a_',id), CONCAT(id, '$', name) from 
result_table_name"
     }
   }
   
   sink {
     redis {
         host = "192.168.111.111"
         port = 7379
         db_num = 11
         data_type = "KV"
         auth = null
     }
   }`


-- 
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