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 2022/01/09 16:59:03 UTC

[GitHub] [dolphinscheduler] CryptoColin opened a new issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

CryptoColin opened a new issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908


   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### What happened
   
   I’m trying to upgrade dolphin schduler from v1.3.6 to v2.0.1,and during I’m upgrading database by a external postgresql,it turn up below error:
   ```
   2022-01-07 10:32:10.720  INFO 4239 --- [           main] o.a.d.dao.upgrade.UpgradeDao             : sqlSQLFilePathclass path resource [sql/upgrade/2.0.0_schema/postgresql/dolphinscheduler_dml.sql]
   2022-01-07 10:32:10.746 ERROR 4239 --- [           main] o.a.d.dao.upgrade.ProjectDao             : ERROR: column "code" does not exist
     Position: 11
   ​
   org.postgresql.util.PSQLException: ERROR: column "code" does not exist
     Position: 11
   	at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2440) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2183) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:308) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:441) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:365) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:143) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:106) ~[postgresql-42.2.5.jar:42.2.5]
   	at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeQuery(ProxyPreparedStatement.java:52) ~[HikariCP-4.0.3.jar:na]
   	at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeQuery(HikariProxyPreparedStatement.java) ~[HikariCP-4.0.3.jar:na]
   	at org.apache.dolphinscheduler.dao.upgrade.ProjectDao.queryAllProject(ProjectDao.java:49) ~[dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.UpgradeDao.processDefinitionJsonSplit(UpgradeDao.java:422) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.UpgradeDao.upgradeDolphinSchedulerTo200(UpgradeDao.java:184) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.DolphinSchedulerManager.upgradeDolphinScheduler(DolphinSchedulerManager.java:104) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.shell.CreateDolphinScheduler$CreateRunner.run(CreateDolphinScheduler.java:58) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.springframework.boot.SpringApplication.callRunner(SpringApplication.java:791) [spring-boot-2.5.6.jar:2.5.6]
   	at org.springframework.boot.SpringApplication.callRunners(SpringApplication.java:775) [spring-boot-2.5.6.jar:2.5.6]
   	at org.springframework.boot.SpringApplication.run(SpringApplication.java:345) [spring-boot-2.5.6.jar:2.5.6]
   	at org.springframework.boot.builder.SpringApplicationBuilder.run(SpringApplicationBuilder.java:143) [spring-boot-2.5.6.jar:2.5.6]
   	at org.apache.dolphinscheduler.dao.upgrade.shell.CreateDolphinScheduler.main(CreateDolphinScheduler.java:40) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   ​
   2022-01-07 10:32:10.746 ERROR 4239 --- [           main] o.a.d.dao.upgrade.UpgradeDao             : json split error
   ​
   java.lang.RuntimeException: sql: SELECT id,code FROM t_ds_project
   	at org.apache.dolphinscheduler.dao.upgrade.ProjectDao.queryAllProject(ProjectDao.java:60) ~[dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.UpgradeDao.processDefinitionJsonSplit(UpgradeDao.java:422) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.UpgradeDao.upgradeDolphinSchedulerTo200(UpgradeDao.java:184) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.DolphinSchedulerManager.upgradeDolphinScheduler(DolphinSchedulerManager.java:104) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.shell.CreateDolphinScheduler$CreateRunner.run(CreateDolphinScheduler.java:58) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.springframework.boot.SpringApplication.callRunner(SpringApplication.java:791) [spring-boot-2.5.6.jar:2.5.6]
   	at org.springframework.boot.SpringApplication.callRunners(SpringApplication.java:775) [spring-boot-2.5.6.jar:2.5.6]
   	at org.springframework.boot.SpringApplication.run(SpringApplication.java:345) [spring-boot-2.5.6.jar:2.5.6]
   	at org.springframework.boot.builder.SpringApplicationBuilder.run(SpringApplicationBuilder.java:143) [spring-boot-2.5.6.jar:2.5.6]
   	at org.apache.dolphinscheduler.dao.upgrade.shell.CreateDolphinScheduler.main(CreateDolphinScheduler.java:40) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   Caused by: org.postgresql.util.PSQLException: ERROR: column "code" does not exist
     Position: 11
   	at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2440) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2183) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:308) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:441) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:365) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:143) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:106) ~[postgresql-42.2.5.jar:42.2.5]
   	at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeQuery(ProxyPreparedStatement.java:52) ~[HikariCP-4.0.3.jar:na]
   	at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeQuery(HikariProxyPreparedStatement.java) ~[HikariCP-4.0.3.jar:na]
   	at org.apache.dolphinscheduler.dao.upgrade.ProjectDao.queryAllProject(ProjectDao.java:49) ~[dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	... 9 common frames omitted
   ​
   2022-01-07 10:32:10.746  INFO 4239 --- [           main] o.a.d.dao.upgrade.UpgradeDao             : dtdev_dolphinscheduler
   2022-01-07 10:32:10.747  INFO 4239 --- [           main] o.a.d.common.utils.ScriptRunner          : sql: /*  * Licensed to the Apache Software Foundation (ASF) under one or more  * contributor license agreements.  See the NOTICE file distributed with  * this work for additional information regarding copyright ownership.  * The ASF licenses this file to You under the Apache License, Version 2.0  * (the "License"); you may not use this file except in compliance with  * the License.  You may obtain a copy of the License at  *  *    http://www.apache.org/licenses/LICENSE-2.0  *  * Unless required by applicable law or agreed to in writing, software  * distributed under the License is distributed on an "AS IS" BASIS,  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  * See the License for the specific language governing permissions and  * limitations under the License. */ ALTER TABLE "t_ds_process_definition" DROP CONSTRAINT "t_ds_process_definition_pkey" 
   2022-01-07 10:32:10.748 ERROR 4239 --- [           main] o.a.d.common.utils.ScriptRunner          : SQLException
   ​
   org.postgresql.util.PSQLException: ERROR: constraint "t_ds_process_definition_pkey" of relation "t_ds_process_definition" does not exist
   	at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2440) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2183) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:308) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:441) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:365) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:307) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:293) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:270) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:266) ~[postgresql-42.2.5.jar:42.2.5]
   	at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) ~[HikariCP-4.0.3.jar:na]
   	at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) ~[HikariCP-4.0.3.jar:na]
   	at org.apache.dolphinscheduler.common.utils.ScriptRunner.runScript(ScriptRunner.java:117) [dolphinscheduler-common-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.common.utils.ScriptRunner.runScript(ScriptRunner.java:72) [dolphinscheduler-common-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.UpgradeDao.upgradeDolphinSchedulerDDL(UpgradeDao.java:368) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.UpgradeDao.upgradeDolphinSchedulerTo200(UpgradeDao.java:185) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.DolphinSchedulerManager.upgradeDolphinScheduler(DolphinSchedulerManager.java:104) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.dao.upgrade.shell.CreateDolphinScheduler$CreateRunner.run(CreateDolphinScheduler.java:58) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   	at org.springframework.boot.SpringApplication.callRunner(SpringApplication.java:791) [spring-boot-2.5.6.jar:2.5.6]
   	at org.springframework.boot.SpringApplication.callRunners(SpringApplication.java:775) [spring-boot-2.5.6.jar:2.5.6]
   	at org.springframework.boot.SpringApplication.run(SpringApplication.java:345) [spring-boot-2.5.6.jar:2.5.6]
   	at org.springframework.boot.builder.SpringApplicationBuilder.run(SpringApplicationBuilder.java:143) [spring-boot-2.5.6.jar:2.5.6]
   	at org.apache.dolphinscheduler.dao.upgrade.shell.CreateDolphinScheduler.main(CreateDolphinScheduler.java:40) [dolphinscheduler-dao-2.0.1.jar:2.0.1]
   ​
   2022-01-07 10:32:10.748 ERROR 4239 --- [           main] o.a.d.common.utils.ScriptRunner          : Error executing: /*  * Licensed to the Apache Software Foundation (ASF) under one or more  * contributor license agreements.  See the NOTICE file distributed with  * this work for additional information regarding copyright ownership.  * The ASF licenses this file to You under the Apache License, Version 2.0  * (the "License"); you may not use this file except in compliance with  * the License.  You may obtain a copy of the License at  *  *    http://www.apache.org/licenses/LICENSE-2.0  *  * Unless required by applicable law or agreed to in writing, software  * distributed under the License is distributed on an "AS IS" BASIS,  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  * See the License for the specific language governing permissions and  * limitations under the License. */ ALTER TABLE "t_ds_process_definition" DROP CONSTRAINT "t_ds_process_definition
 _pkey" 
   2022-01-07 10:32:10.748 ERROR 4239 --- [           main] o.a.d.dao.upgrade.UpgradeDao             : ERROR: constraint "t_ds_process_definition_pkey" of relation "t_ds_process_definition" does not exist
   ​
   org.postgresql.util.PSQLException: ERROR: constraint "t_ds_process_definition_pkey" of relation "t_ds_process_definition" does not exist
   	at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2440) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2183) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:308) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:441) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:365) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:307) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:293) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:270) ~[postgresql-42.2.5.jar:42.2.5]
   	at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:266) ~[postgresql-42.2.5.jar:42.2.5]
   	at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94) ~[HikariCP-4.0.3.jar:na]
   	at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java) ~[HikariCP-4.0.3.jar:na]
   	at org.apache.dolphinscheduler.common.utils.ScriptRunner.runScript(ScriptRunner.java:117) ~[dolphinscheduler-common-2.0.1.jar:2.0.1]
   	at org.apache.dolphinscheduler.common.utils.ScriptRunner.runScript(ScriptRunner.java:72) ~[dolphinscheduler-common-2.0.1.jar:2.0.1]
   	a...
   ```
   after I looked up the create_dolphinscheduler.sh and other related sql scripts,I’m wondering if it’s a bug of the upgrade ddl?
   
   
   ### What you expected to happen
   
   upgrade successfully,and the ddl file execute correctly
   
   ### How to reproduce
   
   you can try to up grade from 1.3.6 to 2.0.1 use postgresql as database,and when you execute create_dolphinscheduler.sql or upgrade.sql
   
   ### Anything else
   
   _No response_
   
   ### Version
   
   2.0.1
   
   ### 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@dolphinscheduler.apache.org

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



[GitHub] [dolphinscheduler] zhongjiajie commented on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
zhongjiajie commented on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1008605477


   Yeah, you could not upgrade the database from 1.3.x to 2.0.0 - 2.0.1, you could find in https://dolphinscheduler.apache.org/en-us/docs/2.0.1/user_doc/guide/installation/pseudo-cluster.html section "Initialize the database" said that "In the latest version, the way running command sh script/create-dolphinscheduler.sh initialization database is broken" is also not work for upgrade-dolphinscheduler. Am I right @lenboo @JinyLeeChina 


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

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



[GitHub] [dolphinscheduler] CryptoColin commented on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
CryptoColin commented on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1040187488


   which version had fixed this issues,please let me know, thanks


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

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



[GitHub] [dolphinscheduler] zhongjiajie commented on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
zhongjiajie commented on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1041062086


   > which version had fixed this issues,please let me know, thanks
   
   2.0.2 I thinks, Am I right @caishunfeng @lenboo 


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

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



[GitHub] [dolphinscheduler] CryptoColin commented on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
CryptoColin commented on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1040187488


   which version had fixed this issues,please let me know, thanks


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

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



[GitHub] [dolphinscheduler] zhongjiajie closed issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
zhongjiajie closed issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908


   


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

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



[GitHub] [dolphinscheduler] CryptoColin edited a comment on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
CryptoColin edited a comment on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1008651662


   so that meas if I want to upgrade from 1.3.x to 2.0.1,I should backup the database manually? @zhongjiajie 


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

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



[GitHub] [dolphinscheduler] JinyLeeChina commented on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
JinyLeeChina commented on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1009070140


   Yes,you should backup the database firstly, then `sh script/upgrade-dolphinscheduler.sh`


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

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



[GitHub] [dolphinscheduler] zhongjiajie commented on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
zhongjiajie commented on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1036954289


   we already fix upgrade script about database schema, close this issue


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

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



[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1036823880


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

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



[GitHub] [dolphinscheduler] CryptoColin commented on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
CryptoColin commented on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1008651662


   so that meas if I want to upgrade from 1.3.x to 2.0.1,I should backup the database manually?


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

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



[GitHub] [dolphinscheduler] zhongjiajie commented on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
zhongjiajie commented on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1009552317


   thanks @JinyLeeChina for clarification


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

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



[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #7908: [Bug] [dolphinscheduler-dao] fail to update from 1.3.6 to 2.0.1,lack of upgrade sql

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #7908:
URL: https://github.com/apache/dolphinscheduler/issues/7908#issuecomment-1008335960


   Hi:
   * Thank you for your feedback, we have received your issue, Please wait patiently for a reply.
   * In order for us to understand your request as soon as possible, please provide detailed information、version or pictures.
   * If you haven't received a reply for a long time, you can subscribe to the developer's email,Mail subscription steps reference https://dolphinscheduler.apache.org/en-us/community/development/subscribe.html ,Then write the issue URL in the email content and send question to dev@dolphinscheduler.apache.org.


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

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