Hisoka-X commented on issue #6696: URL: https://github.com/apache/seatunnel/issues/6696#issuecomment-2051785808
This is a demo maybe can help you. https://github.com/apache/seatunnel/blob/790150a54b559148657a599fa16bf00539a5ab74/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-jdbc-e2e/connector-jdbc-e2e-part-1/src/test/resources/jdbc_mysql_source_and_sink_with_multiple_tables.conf In this way, that's meaning we read two table in one source, then we can write data into one sink but with two table data: ```hocon source { Jdbc { url = "jdbc:oracle:thin:@host116:8085:XE" driver = "oracle.jdbc.OracleDriver" connection_check_timeout_sec = 100 user = "system" password = "wdp123" table_list = [ { table_path = "XE.WHS.TEST2" }, { table_path = "XE.WHS.ADMINPRINCIPAL" } ] } } ``` If you want write two table into two different sink, you should config two different source. -- 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]
