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

   ### Search before asking
   
   - [X] I had searched in the 
[feature](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22Feature%22)
 and found no similar feature requirement.
   
   
   ### Description
   
   I'm working on a project that it required to move data from the oracle to 
Clickhouse, and one database has hundreds or thousands of tables, and I'm not 
going to write it by my hand. So I'm looking forward to multi-table source. But 
I found that I cann't set the `result_table_name` on the `table_list` for each 
table, I wish I can write conf like this:
   
   ```hocon
   env {
     job.mode = "BATCH"
     parallelism = 4
   }
   
   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"
               result_table_name = "test2"
           },
           {
               table_path = "XE.WHS.ADMINPRINCIPAL"
               result_table_name = "admin_principal"
           }
       ]
     }
   }
   
   sink {
     Console {
       source_table_name = "test2"
     }
     Console {
       source_table_name = "admin_principal"
     }
   }
   ```
   
   ### Usage Scenario
   
   _No response_
   
   ### Related issues
   
   _No response_
   
   ### Are you willing to submit a 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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to