This is an automated email from the ASF dual-hosted git repository.
gaojun2048 pushed a change to branch alert_plugin_design
in repository
https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git.
omit 392e9f5 [Feature-3189][alert,spi,dao,plugin-api] base code of
dolphinscheduler spi and alert plugin implement (#3601)
omit 3d5c34a [feature][ui]Alert plugin design (#3734)
omit 8ac1462 fix
omit 9221b24 fix
omit 50bfb30 Modify node version
omit 2e117bb Add form-create plug-in and alarm group management add sample
demo
omit a9e3792 [feature-3665][ui]Add element-ui (#3666)
add 42c88a7 [FIX-Bug #3845][Ambari Plugin] Start Ambari report an error:
Table 't_ds_process_definition_version' already exists (#3846)
add 6467875 delay execution ui
add 8c0180d delay execution ui[fixed]
add 3b723c0 restore
add faeb97e restore
add f9f9101 update an annotation
add 6e7cce0 Merge branch 'dev' of
https://github.com/apache/incubator-dolphinscheduler into dev
add a1ee3b5 Merge pull request #1 from apache/dev
add 2a927bc Dependent Timeout
add 4759d47 add check interval
add 61fcad7 add timeout verification
add 76f6e20 Merge pull request #3849 from yinancx/dev
add 1c96ae0 [Fix-3840][server] Fix When the tenant code is a number, it
should not be saved successfully (#3867)
add 7c1ff53 [Bug-3845]postgresql need to add IF NOT EXISTS for table
t_ds_process… (#3852)
add 1a257b1 [Feature][api]Export and import workflow add
processDefinitionDescription #3808 (#3847)
add c4be3b5 [Fix][API] Log dependency package conflict (#3833)
add 39411ce [FIX-3617][Service]fix 2 tasks instance are generated when
fault tolerance (#3873)
add 9de7d3c [FIX-3573][DAO] potential horizontal unauthorized access
(#3880)
add df33d1a Force success
add a4c232c Merge pull request #3861 from yinancx/fs-dev
new 543aac5 [feature-3665][ui]Add element-ui (#3666)
new ab884df Add form-create plug-in and alarm group management add sample
demo
new bbfe5c1 Modify node version
new 1057e6b fix
new a7a928b fix
new 1618b98 [feature][ui]Alert plugin design (#3734)
new 1d25434 [Feature-3189][alert,spi,dao,plugin-api] base code of
dolphinscheduler spi and alert plugin implement (#3601)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (392e9f5)
\
N -- N -- N refs/heads/alert_plugin_design (1d25434)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 7 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:
dolphinscheduler-api/pom.xml | 6 +
.../api/controller/TaskRecordController.java | 4 +-
.../apache/dolphinscheduler/api/enums/Status.java | 4 +-
.../service/impl/ProcessDefinitionServiceImpl.java | 1 +
.../api/service/impl/TenantServiceImpl.java | 26 +-
.../dolphinscheduler/api/utils/RegexUtils.java | 41 +-
.../dolphinscheduler/api/utils/RegexUtilsTest.java | 20 +-
.../dao/mapper/ProcessInstanceMapper.xml | 3 +-
.../dolphinscheduler/server/zk/ZKMasterClient.java | 604 +++++++++++----------
.../service/process/ProcessService.java | 167 +++---
.../service/process/ProcessServiceTest.java | 116 ++++
.../src/js/conf/home/pages/dag/_source/config.js | 7 +
.../_source/formModel/_source/dependentTimeout.vue | 218 ++++++++
.../home/pages/dag/_source/formModel/formModel.vue | 33 +-
.../pages/_source/instanceConditions/common.js | 3 +
.../projects/pages/taskInstance/_source/list.vue | 23 +
.../src/js/conf/home/store/dag/actions.js | 12 +
.../src/js/module/i18n/locale/en_US.js | 6 +
.../src/js/module/i18n/locale/zh_CN.js | 6 +
pom.xml | 1 +
.../1.3.3_schema/mysql/dolphinscheduler_ddl.sql | 2 +-
.../postgresql/dolphinscheduler_ddl.sql | 4 +-
22 files changed, 890 insertions(+), 417 deletions(-)
copy
dolphinscheduler-spi/src/main/java/org/apache/dolphinscheduler/spi/alert/AlertInfo.java
=>
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/utils/RegexUtils.java
(60%)
copy
dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/utils/EncryptionUtilsTest.java
=>
dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/utils/RegexUtilsTest.java
(69%)
create mode 100644
dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/process/ProcessServiceTest.java
create mode 100644
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/_source/dependentTimeout.vue