liugddx commented on PR #3309:
URL: 
https://github.com/apache/incubator-seatunnel/pull/3309#issuecomment-1308820136

   flink test conf
   ```
   env {
     # You can set flink configuration here
     execution.parallelism = 1
     job.mode = "BATCH"
     #execution.checkpoint.interval = 10000
     #execution.checkpoint.data-uri = "hdfs://localhost:9000/checkpoint"
   }
   
   source {
     # This is a example source plugin **only for test and demonstrate the 
feature source plugin**
     Jdbc {
       url = 
"jdbc:ots:https://p00spwbz7y1w.cn-shanghai.ots.aliyuncs.com/p00spwbz7y1w";
       driver = "com.alicloud.openservices.tablestore.jdbc.OTSDriver"
       user = "xxx"
       password = "xxx"
       query = "select * from source"
     }
   
   
     # If you would like to get more information about how to configure 
seatunnel and see full list of source plugins,
     # please go to https://seatunnel.apache.org/docs/category/source-v2
   }
   
   transform {
   
     # If you would like to get more information about how to configure 
seatunnel and see full list of transform plugins,
     # please go to https://seatunnel.apache.org/docs/category/transform
   }
   
   sink {
     Tablestore {
       end_point = "https://p00spwbz7y1w.cn-shanghai.ots.aliyuncs.com";
       instance_name = "xxx"
       access_key_id = "xxx"
       access_key_secret = "VoF1fjWSCDRJvoKA1ArlZq7Z9BxP9B"
       table = "sink"
       primary_keys = ["pk_1","pk_2","pk_3"]
     }
   ```


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