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/03/16 11:53:27 UTC

[GitHub] [dolphinscheduler] anAtCloudfall opened a new issue #8935: [Bug] [SQL] 从2.0.1 升级到2.0.5 版本的时候发现任务一直处于运行状态并且无法进行删除

anAtCloudfall opened a new issue #8935:
URL: https://github.com/apache/dolphinscheduler/issues/8935


   ### 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
   
   我从 2.0.1 版本升级到 2.0.5 版本后发现 任务一直处于运行状态并且无法进行删除,于是去查看日志发现 数据库中少了一个字段,我去查看了以下在发布的版本中并未提到有关于元数据的更新,通过对照安装文档发现确实是 t_ds_process_instance 表中缺少了 restart_time 字段。我使用的是Mysql 进行元数据存储。报错日志如下:
   ```
   [ERROR] 2022-03-16 18:36:59.599 org.apache.dolphinscheduler.server.master.runner.FailoverExecuteThread:[82] - MASTER server failover failed, host:172.16.1.70:5678
   org.springframework.jdbc.BadSqlGrammarException: 
   ### Error querying database.  Cause: java.sql.SQLSyntaxErrorException: Unknown column 'restart_time' in 'field list'
   ### The error may exist in class path resource [org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.xml]
   ### The error may involve defaultParameterMap
   ### The error occurred while setting parameters
   ### SQL: select                   id, name, process_definition_version, process_definition_code, state, recovery, start_time, end_time, run_times,host,         command_type, command_param, task_depend_type, max_try_times, failure_strategy, warning_type,         warning_group_id, schedule_time, command_start_time, global_params, flag,         update_time, is_sub_process, executor_id, history_cmd,         process_instance_priority, worker_group,environment_code, timeout, tenant_id, var_pool, dry_run, restart_time               from t_ds_process_instance         where 1=1                       and host=?                   and state in          (               ?          ,              ?          ,              ?          ,              ?          ,              ?          )          order by id asc
   ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'restart_time' in 'field list'
   ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'restart_time' in 'field list'
           at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)
           at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
           at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:74)
           at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:440)
           at com.sun.proxy.$Proxy91.selectList(Unknown Source)
           at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:223)
           at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:158)
           at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:76)
           at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:61)
           at com.sun.proxy.$Proxy100.queryByHostAndStatus(Unknown Source)
           at org.apache.dolphinscheduler.service.process.ProcessService.queryNeedFailoverProcessInstances(ProcessService.java:1844)
           at org.apache.dolphinscheduler.service.process.ProcessService$$FastClassBySpringCGLIB$$ed138739.invoke(<generated>)
           at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
           at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
           at org.apache.dolphinscheduler.service.process.ProcessService$$EnhancerBySpringCGLIB$$43d96e87.queryNeedFailoverProcessInstances(<generated>)
           at org.apache.dolphinscheduler.server.master.registry.MasterRegistryClient.failoverMaster(MasterRegistryClient.java:423)
           at org.apache.dolphinscheduler.server.master.runner.FailoverExecuteThread.run(FailoverExecuteThread.java:80)
   Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'restart_time' in 'field list'
           at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
           at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
           at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953)
           at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:371)
           at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
           at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
           at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)
           at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
           at sun.reflect.GeneratedMethodAccessor71.invoke(Unknown Source)
           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
           at java.lang.reflect.Method.invoke(Method.java:498)
           at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63)
           at com.sun.proxy.$Proxy130.query(Unknown Source)
           at com.baomidou.mybatisplus.core.executor.MybatisSimpleExecutor.doQuery(MybatisSimpleExecutor.java:67)
           at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
           at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
           at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:136)
           at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
           at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
           at sun.reflect.GeneratedMethodAccessor67.invoke(Unknown Source)
           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
           at java.lang.reflect.Method.invoke(Method.java:498)
           at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426)
           ... 13 common frames omitted
   ```
   
   ### What you expected to happen
   
   SQL 表中元数据未进行及时更新。
   
   ### How to reproduce
   
   通过官方文档升级 2.0.1 到 2.0.5.
   
   
   ### Anything else
   
   解决方法:
   1. 找到mysql 中存储 dolphinscheduler 的库
   2. 使用该库
   3. 执行以下SQL
   ```
   alter table t_ds_process_instance add `restart_time` datetime DEFAULT NULL COMMENT 'process instance restart time';
   ```
   
   ### Version
   
   2.0.5
   
   ### Are you willing to submit 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: 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 #8935: [Bug] [SQL] When upgrading from 2.0.1 to 2.0.5, the task is always running and cannot be deleted

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


   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



[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #8935: [Bug] [SQL] When upgrading from 2.0.1 to 2.0.5, the task is always running and cannot be deleted

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


   ### 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
   
   After I upgraded from version 2.0.1 to version 2.0.5, I found that the task has been running and cannot be deleted, so I went to check the log and found that there was a field missing in the database, I went to check the following, which was not mentioned in the released version Regarding the update of metadata, it is found that the restart_time field is missing in the t_ds_process_instance table by comparing the installation documentation. I am using Mysql for metadata storage. The error log is as follows:
   ````
   [ERROR] 2022-03-16 18:36:59.599 org.apache.dolphinscheduler.server.master.runner.FailoverExecuteThread:[82] - MASTER server failover failed, host:172.16.1.70:5678
   org.springframework.jdbc.BadSqlGrammarException:
   ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'restart_time' in 'field list'
   ### The error may exist in class path resource [org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.xml]
   ### The error may involve defaultParameterMap
   ### The error occurred while setting parameters
   ### SQL: select id, name, process_definition_version, process_definition_code, state, recovery, start_time, end_time, run_times, host, command_type, command_param, task_depend_type, max_try_times, failure_strategy, warning_type, warning_group_id, schedule_time, command_start_time, global_params, flag, update_time, is_sub_process, executor_id, history_cmd, process_instance_priority, worker_group,environment_code, timeout, tenant_id, var_pool, dry_run, restart_time from t_ds_process_instance where 1=1 and host=? and state in ( ? , ? , ? , ? , ? ) order by id asc
   ### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'restart_time' in 'field list'
   ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column 'restart_time' in 'field list'
           at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:239)
           at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
           at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:74)
           at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:440)
           at com.sun.proxy.$Proxy91.selectList(Unknown Source)
           at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:223)
           at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:158)
           at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:76)
           at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:61)
           at com.sun.proxy.$Proxy100.queryByHostAndStatus(Unknown Source)
           at org.apache.dolphinscheduler.service.process.ProcessService.queryNeedFailoverProcessInstances(ProcessService.java:1844)
           at org.apache.dolphinscheduler.service.process.ProcessService$$FastClassBySpringCGLIB$$ed138739.invoke(<generated>)
           at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
           at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
           at org.apache.dolphinscheduler.service.process.ProcessService$$EnhancerBySpringCGLIB$$43d96e87.queryNeedFailoverProcessInstances(<generated>)
           at org.apache.dolphinscheduler.server.master.registry.MasterRegistryClient.failoverMaster(MasterRegistryClient.java:423)
           at org.apache.dolphinscheduler.server.master.runner.FailoverExecuteThread.run(FailoverExecuteThread.java:80)
   Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'restart_time' in 'field list'
           at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
           at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
           at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953)
           at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:371)
           at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
           at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
           at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)
           at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
           at sun.reflect.GeneratedMethodAccessor71.invoke(Unknown Source)
           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
           at java.lang.reflect.Method.invoke(Method.java:498)
           at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63)
           at com.sun.proxy.$Proxy130.query(Unknown Source)
           at com.baomidou.mybatisplus.core.executor.MybatisSimpleExecutor.doQuery(MybatisSimpleExecutor.java:67)
           at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
           at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
           at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:136)
           at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
           at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
           at sun.reflect.GeneratedMethodAccessor67.invoke(Unknown Source)
           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
           at java.lang.reflect.Method.invoke(Method.java:498)
           at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426)
           ... 13 common frames omitted
   ````
   
   ### What you expected to happen
   
   The metadata in the SQL table is not updated in time.
   
   ### How to reproduce
   
   Upgrade 2.0.1 to 2.0.5 via official documentation.
   
   
   ### Anything else
   
   Solution:
   1. Find the library that stores dolphinscheduler in mysql
   2. Use the library
   3. Execute the following SQL
   ````
   alter table t_ds_process_instance add `restart_time` datetime DEFAULT NULL COMMENT 'process instance restart time';
   ````
   
   ### Version
   
   2.0.5
   
   ### Are you willing to submit 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: commits-unsubscribe@dolphinscheduler.apache.org

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



[GitHub] [dolphinscheduler] anAtCloudfall commented on issue #8935: [Bug] [SQL] When upgrading from 2.0.1 to 2.0.5, the task is always running and cannot be deleted

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


   
   ![image](https://user-images.githubusercontent.com/87744114/158733519-ad7de1f3-c55e-4c7f-8eb3-8c8c3e88207d.png)
   
   我在2.0.5 的包里里面并未发现有 2.0.2_schema 的 ddl。
   > 嗨@anAtCloudfall ,您可以添加一些有关如何升级的步骤描述吗?我在 2.0.2_schema 中找到了这个 ddl。
   
   


-- 
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] anAtCloudfall commented on issue #8935: [Bug] [SQL] When upgrading from 2.0.1 to 2.0.5, the task is always running and cannot be deleted

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


   > > 了解了,我是直接从2.0.1 升级到 2.0.5 的,中间没有先升级到其它版本,也就是说我需要先把中间所有的版本 schema SQL都进行执行一遍是吧
   > 
   > yes, you can see the `script/create-dolphinscheduler.sh`, it will run upgradeDolphinScheduler when schema was initialized, and the upgrade is rolling upgrade.
   
   我使用的就是 script/create-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] anAtCloudfall commented on issue #8935: [Bug] [SQL] When upgrading from 2.0.1 to 2.0.5, the task is always running and cannot be deleted

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


   了解了,我是直接从2.0.1 升级到 2.0.5 的,中间没有先升级到其它版本,也就是说我需要先把中间所有的版本 schema SQL都进行执行一遍是吧


-- 
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] caishunfeng commented on issue #8935: [Bug] [SQL] When upgrading from 2.0.1 to 2.0.5, the task is always running and cannot be deleted

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


   Hi @anAtCloudfall  can you add some step description of how to upgrade? I found this ddl in 2.0.2_schema.


-- 
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] caishunfeng commented on issue #8935: [Bug] [SQL] When upgrading from 2.0.1 to 2.0.5, the task is always running and cannot be deleted

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


   > 了解了,我是直接从2.0.1 升级到 2.0.5 的,中间没有先升级到其它版本,也就是说我需要先把中间所有的版本 schema SQL都进行执行一遍是吧
   
   yes, you can see the `script/create-dolphinscheduler.sh`, it will run upgradeDolphinScheduler when schema was initialized,  and the upgrade is rolling upgrade.


-- 
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] caishunfeng closed issue #8935: [Bug] [SQL] When upgrading from 2.0.1 to 2.0.5, the task is always running and cannot be deleted

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


   


-- 
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] anAtCloudfall commented on issue #8935: [Bug] [SQL] When upgrading from 2.0.1 to 2.0.5, the task is always running and cannot be deleted

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


   有没有可能在后续的版本把更新的SQL 文件都放一起,以追加的方式存放,这样会不会更好一点,如果单个存放的话,意味着如果要跨多个版本升级的话,需要同时执行多个文件夹下的多个SQL。同时个人觉得官方文档中需要进行更新。https://dolphinscheduler.apache.org/zh-cn/docs/latest/user_doc/guide/upgrade.html


-- 
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] anAtCloudfall removed a comment on issue #8935: [Bug] [SQL] When upgrading from 2.0.1 to 2.0.5, the task is always running and cannot be deleted

Posted by GitBox <gi...@apache.org>.
anAtCloudfall removed a comment on issue #8935:
URL: https://github.com/apache/dolphinscheduler/issues/8935#issuecomment-1070273235


   
   ![image](https://user-images.githubusercontent.com/87744114/158733519-ad7de1f3-c55e-4c7f-8eb3-8c8c3e88207d.png)
   
   我在2.0.5 的包里里面并未发现有 2.0.2_schema 的 ddl。
   > 嗨@anAtCloudfall ,您可以添加一些有关如何升级的步骤描述吗?我在 2.0.2_schema 中找到了这个 ddl。
   
   


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