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

caishunfeng pushed a change to branch 3.0.0-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


    from 5a2ea0b76b Fix compile error
     new 47782ba555 [Fix][UI] Add validator to the next node field of the 
switch task. (#10898)
     new bb6aaf755e [Fix][UI] Set the next node to not required. (#10932)
     new b9e3187ad5 [Feature-10871] add workflow executing data query (#10875)

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../api/controller/ExecutorController.java         |  35 ++++-
 .../api/controller/ProcessInstanceController.java  |   5 +-
 .../apache/dolphinscheduler/api/enums/Status.java  |   1 +
 .../api/service/ExecutorService.java               |   8 ++
 .../api/service/impl/ExecutorServiceImpl.java      |  25 ++++
 .../service/impl/ProcessInstanceServiceImpl.java   |   1 -
 .../controller/WorkflowExecuteController.java      |  51 +++++++
 ... => WorkflowExecutingDataRequestProcessor.java} |  42 +++---
 .../server/master/rpc/MasterRPCServer.java         |   5 +
 .../master/runner/WorkflowExecuteThreadPool.java   |   9 +-
 .../master/runner/task/SubTaskProcessor.java       |   5 +-
 .../server/master/service/ExecutingService.java    |  75 ++++++++++
 .../remote/command/CommandType.java                |  12 +-
 ...va => WorkflowExecutingDataRequestCommand.java} |  13 +-
 ...a => WorkflowExecutingDataResponseCommand.java} |  18 ++-
 .../remote/dto/TaskInstanceExecuteDto.java         | 109 +++++++++++++++
 .../remote/dto/WorkflowExecuteDto.java             | 154 +++++++++++++++++++++
 .../processor/StateEventCallbackService.java       |  36 +++--
 .../service/process/ProcessServiceImpl.java        |  15 +-
 .../components/form/fields/custom-parameters.ts    |  44 +++---
 dolphinscheduler-ui/src/locales/en_US/project.ts   |   6 +-
 dolphinscheduler-ui/src/locales/zh_CN/project.ts   |  62 +--------
 .../task/components/node/fields/use-switch.ts      |  17 +--
 23 files changed, 566 insertions(+), 182 deletions(-)
 create mode 100644 
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/controller/WorkflowExecuteController.java
 copy 
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/processor/{CacheProcessor.java
 => WorkflowExecutingDataRequestProcessor.java} (50%)
 create mode 100644 
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/service/ExecutingService.java
 copy 
dolphinscheduler-remote/src/main/java/org/apache/dolphinscheduler/remote/command/{TaskKillRequestCommand.java
 => WorkflowExecutingDataRequestCommand.java} (83%)
 copy 
dolphinscheduler-remote/src/main/java/org/apache/dolphinscheduler/remote/command/{TaskKillRequestCommand.java
 => WorkflowExecutingDataResponseCommand.java} (73%)
 create mode 100644 
dolphinscheduler-remote/src/main/java/org/apache/dolphinscheduler/remote/dto/TaskInstanceExecuteDto.java
 create mode 100644 
dolphinscheduler-remote/src/main/java/org/apache/dolphinscheduler/remote/dto/WorkflowExecuteDto.java

Reply via email to