You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2020/04/30 02:53:36 UTC

[GitHub] [incubator-dolphinscheduler] lookhua opened a new issue #2584: [Feature] 建议k8s部署的时候默认数据库是MySQL,降低使用门槛

lookhua opened a new issue #2584:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/2584


   建议k8s部署的时候默认数据库是MySQL,降低使用门槛。
   目前随着Tidb等NewSQL数据库的流行,NewSQL会成为技术中台的首选数据库,而Tidb作为一个非常火的项目是搭建技术中台的首选数据库,Tidb兼容MySQL协议而非pg协议,所以incubator-dolphinscheduler的数据直接建在Tidb上是非常合适的


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

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



[GitHub] [incubator-dolphinscheduler] chengshiwen edited a comment on issue #2584: [Feature] 建议k8s部署的时候默认数据库是MySQL,降低使用门槛

Posted by GitBox <gi...@apache.org>.
chengshiwen edited a comment on issue #2584:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/2584#issuecomment-776545939


   @lookhua @liwenhe1993 Because of the commercial license, we cannot directly use the driver and client of MySQL. If you want to use MySQL, you can build a new image based on our `apache/dolphinscheduler` image.
   
   As for MySQL, you need to download [mysql-connector-java-5.1.49.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.49/mysql-connector-java-5.1.49.jar)
   
   1. Create your `Dockerfile`
   ```
   FROM apache/dolphinscheduler:latest
   COPY mysql-connector-java-5.1.49.jar /opt/dolphinscheduler/lib
   RUN apk add --update --no-cache mysql-client
   ```
   2. Build the image
   ```
   docker build -f Dockerfile -t apache/dolphinscheduler:mysql .
   ```
   
   by the way , please update/add title and description in English


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

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



[GitHub] [incubator-dolphinscheduler] dailidong closed issue #2584: [Feature] 建议k8s部署的时候默认数据库是MySQL,降低使用门槛

Posted by GitBox <gi...@apache.org>.
dailidong closed issue #2584:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/2584


   


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

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



[GitHub] [incubator-dolphinscheduler] chengshiwen commented on issue #2584: [Feature] 建议k8s部署的时候默认数据库是MySQL,降低使用门槛

Posted by GitBox <gi...@apache.org>.
chengshiwen commented on issue #2584:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/2584#issuecomment-776545939


   @lookhua @liwenhe1993 Because of the commercial license, we cannot directly use the driver and client of MySQL and Oracle. If you want to use MySQL, you can build a new image based on our `apache/dolphinscheduler` image.
   
   As for MySQL, you need to download [mysql-connector-java-5.1.49.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.49/mysql-connector-java-5.1.49.jar)
   
   1. Create your `Dockerfile`
   ```
   From apache/dolphinscheduler:latest
   COPY mysql-connector-java-5.1.49.jar /opt/dolphinscheduler/lib
   RUN apk add --update --no-cache mysql-client
   ```
   2. Build the image
   ```
   docker build -f Dockerfile -t apache/dolphinscheduler:mysql .
   ```
   
   by the way , please update/add title and description in English


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

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



[GitHub] [incubator-dolphinscheduler] chengshiwen edited a comment on issue #2584: [Feature] 建议k8s部署的时候默认数据库是MySQL,降低使用门槛

Posted by GitBox <gi...@apache.org>.
chengshiwen edited a comment on issue #2584:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/2584#issuecomment-776545939


   @lookhua @liwenhe1993 Because of the commercial license, we cannot directly use the driver and client of MySQL. If you want to use MySQL, you can build a new image based on our `apache/dolphinscheduler` image.
   
   As for MySQL, you need to download [mysql-connector-java-5.1.49.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.49/mysql-connector-java-5.1.49.jar)
   
   1. Create your `Dockerfile`
   ```
   From apache/dolphinscheduler:latest
   COPY mysql-connector-java-5.1.49.jar /opt/dolphinscheduler/lib
   RUN apk add --update --no-cache mysql-client
   ```
   2. Build the image
   ```
   docker build -f Dockerfile -t apache/dolphinscheduler:mysql .
   ```
   
   by the way , please update/add title and description in English


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

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



[GitHub] [incubator-dolphinscheduler] liwenhe1993 commented on issue #2584: [Feature] 建议k8s部署的时候默认数据库是MySQL,降低使用门槛

Posted by GitBox <gi...@apache.org>.
liwenhe1993 commented on issue #2584:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/2584#issuecomment-621932394


   Good idea!
   But why not provide both Mysql and PostgreSql?
   When user run DolphinScheduler, they can either choice MySql or PostgreSql.


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

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