You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by GitBox <gi...@apache.org> on 2022/09/21 10:21:52 UTC

[GitHub] [incubator-seatunnel] isMrH opened a new issue, #2835: [Bug] [seatunnel-spark-jdbc-source-Jdbc] please specify [table] as non-empty

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

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/incubator-seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues.
   
   
   ### What happened
   
   Conflict with `table` when using `jdbc.query`.
   `table` in `seatunnel-spark-jdbc-source-Jdbc` must not be empty.
   
   ### SeaTunnel Version
   
   2.1.2
   
   ### SeaTunnel Config
   
   ```conf
   env {
     spark.app.name = "st_export_test"
     spark.executor.instances = 5
     spark.executor.cores = 1
     spark.executor.memory = "2g"
     spark.sql.catalogImplementation = "hive"
   }
   
   source {
       jdbc {
           driver = "com.mysql.cj.jdbc.Driver"
           url = "jdbc:mysql://10.xx.xx.xx:4000/db"
           user = "xxx"
           password = "xxx"
           jdbc.fetchsize = 50000
           # table = "table"
           result_table_name = "table"
           jdbc.query = "select id,code,name from tablewhere id < 10"
     }
   }
   
   transform {
   }
   
   
   sink {
     Hive {
       sql = "insert overwrite table tmp.test partition(dt='20220921') select id,code,name from table"
     }
   }
   ```
   
   
   ### Running Command
   
   ```shell
   ./bin/start-seatunnel-spark.sh -c ./config/st_import_test.conf -e cluster -m yarn
   ```
   
   
   ### Error Exception
   
   ```log
   # Remove the `table` parameter 
   ERROR command.BaseTaskExecuteCommand: Plugin[org.apache.seatunnel.spark.jdbc.source.Jdbc] contains invalid config, error: please specify [table] as non-empty
   
   # Add the `table` parameter
   Caused by: java.lang.IllegalArgumentException: Both 'dbtable' and 'query' can not be specified at the same time.
   ```
   
   
   ### Flink or Spark Version
   
   Spark version 2.4.0-cdh6.2.1
   
   ### Java or Scala Version
   
   _No response_
   
   ### Screenshots
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [X] 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: commits-unsubscribe@seatunnel.apache.org.apache.org

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


[GitHub] [incubator-seatunnel] github-actions[bot] commented on issue #2835: [Bug] [seatunnel-spark-jdbc-source-Jdbc] please specify [table] as non-empty

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #2835:
URL: https://github.com/apache/incubator-seatunnel/issues/2835#issuecomment-1287559551

   This issue has been automatically marked as stale because it has not had recent activity for 30 days. It will be closed in next 7 days if no further activity occurs.


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


Re: [I] [Bug] [seatunnel-spark-jdbc-source-Jdbc] please specify [table] as non-empty [seatunnel]

Posted by "davidzollo (via GitHub)" <gi...@apache.org>.
davidzollo closed issue #2835: [Bug] [seatunnel-spark-jdbc-source-Jdbc] please specify [table] as non-empty
URL: https://github.com/apache/seatunnel/issues/2835


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


[GitHub] [incubator-seatunnel] isMrH closed issue #2835: [Bug] [seatunnel-spark-jdbc-source-Jdbc] please specify [table] as non-empty

Posted by GitBox <gi...@apache.org>.
isMrH closed issue #2835: [Bug] [seatunnel-spark-jdbc-source-Jdbc] please specify [table] as non-empty
URL: https://github.com/apache/incubator-seatunnel/issues/2835


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