You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by "zorrofox (via GitHub)" <gi...@apache.org> on 2023/03/17 15:16:06 UTC

[GitHub] [incubator-seatunnel] zorrofox commented on issue #4340: How to set multiple sources at same time in one task

zorrofox commented on issue #4340:
URL: https://github.com/apache/incubator-seatunnel/issues/4340#issuecomment-1473997707

   I think your sink part should be:
   ```
   sink {
       clickhouse {
           host = "1xxxx" 
           database = "xx"
           table = "sink_table"
           fields = [....]
           username = "default"
           password = "default"
           bulk_size = 4000000
           clickhouse.socket_timeout = 300000
           clickhouse.connection_timeout = 300000
           clickhouse.dataTransferTimeout = 300000
           retry = 3
           source_table_name= result_table_A
       }
       clickhouse {
           host = "1xxxx" 
           database = "xx"
           table = "sink_table"
           fields = [....]
           username = "default"
           password = "default"
           bulk_size = 4000000
           clickhouse.socket_timeout = 300000
           clickhouse.connection_timeout = 300000
           clickhouse.dataTransferTimeout = 300000
           retry = 3
           source_table_name= result_table_B
       }
   }
   ```


-- 
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-unsubscribe@seatunnel.apache.org

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