You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by le...@apache.org on 2021/12/28 11:35:52 UTC

[dolphinscheduler] branch dev updated (cc77963 -> 8808c0a)

This is an automated email from the ASF dual-hosted git repository.

leonbao pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git.


    from cc77963  [FIX-#6727][worker-server] Fix procedure params bug (#7680)
     add 8808c0a  [Bug-7474][MasterServer] fix failover when node host is null (#7475)

No new revisions were added by this update.

Summary of changes:
 .../apache/dolphinscheduler/common/Constants.java  |   5 +
 .../dao/entity/ProcessInstance.java                |  18 ++
 .../dao/mapper/ProcessInstanceMapper.java          |   7 +
 .../dao/mapper/ProcessInstanceMapper.xml           |  14 +-
 .../src/main/resources/sql/dolphinscheduler_h2.sql |   1 +
 .../main/resources/sql/dolphinscheduler_mysql.sql  |   1 +
 .../resources/sql/dolphinscheduler_postgresql.sql  |   1 +
 .../mysql/dolphinscheduler_ddl.sql                 |  30 ++-
 .../mysql}/dolphinscheduler_dml.sql                |   0
 .../postgresql/dolphinscheduler_ddl.sql            |   4 +-
 .../postgresql/dolphinscheduler_dml.sql            |   0
 .../server/master/MasterServer.java                |   5 +
 .../server/master/config/MasterConfig.java         |  18 ++
 .../master/registry/MasterRegistryClient.java      | 220 ++++++++++++++-------
 .../registry/MasterRegistryDataListener.java       |   4 +-
 .../master/runner/FailoverExecuteThread.java       | 110 +++++++++++
 .../master/runner/WorkflowExecuteThread.java       |   1 +
 .../src/main/resources/application.yaml            |   4 +
 .../master/registry/MasterRegistryClientTest.java  |   8 +-
 .../dolphinscheduler/registry/api/Registry.java    |   3 +
 .../registry/zookeeper/ZookeeperRegistry.java      |   6 +
 .../service/process/ProcessService.java            |   7 +
 .../service/registry/RegistryClient.java           |   5 +
 .../src/main/resources/application.yaml            |   4 +
 24 files changed, 383 insertions(+), 93 deletions(-)
 copy dolphinscheduler-dao/src/main/resources/sql/upgrade/{1.3.3_schema => 2.0.2_schema}/mysql/dolphinscheduler_ddl.sql (56%)
 copy dolphinscheduler-dao/src/main/resources/sql/upgrade/{2.0.1_schema/postgresql => 2.0.2_schema/mysql}/dolphinscheduler_dml.sql (100%)
 copy dolphinscheduler-dao/src/main/resources/sql/upgrade/{2.0.1_schema => 2.0.2_schema}/postgresql/dolphinscheduler_ddl.sql (85%)
 copy dolphinscheduler-dao/src/main/resources/sql/upgrade/{2.0.1_schema => 2.0.2_schema}/postgresql/dolphinscheduler_dml.sql (100%)
 create mode 100644 dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/FailoverExecuteThread.java