status
stringclasses
1 value
repo_name
stringclasses
31 values
repo_url
stringclasses
31 values
issue_id
int64
1
104k
title
stringlengths
4
233
body
stringlengths
0
186k
issue_url
stringlengths
38
56
pull_url
stringlengths
37
54
before_fix_sha
stringlengths
40
40
after_fix_sha
stringlengths
40
40
report_datetime
timestamp[us, tz=UTC]
language
stringclasses
5 values
commit_datetime
timestamp[us, tz=UTC]
updated_file
stringlengths
7
188
chunk_content
stringlengths
1
1.03M
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/UdfManageE2ETest.java
fs.close(); } @Test @Order(60) void testRenameUdf() { final UdfManagePage page = new UdfManagePage(browser); page.rename(testUploadUdfFileName, testUploadUdfRenameFileName); await().untilAsserted(() -> { assertThat(page.udfList()) .as("File list should contain newly-created file") .extracting(WebElement::getText) .anyMatch(it -> it.contains(testUploadUdfRenameFileName)); }); } @Test @Order(70) void testDeleteUdf() { final UdfManagePage page = new UdfManagePage(browser); page.delete(testUploadUdfRenameFileName); await().untilAsserted(() -> { browser.navigate().refresh(); assertThat( page.udfList() ).noneMatch( it -> it.getText().contains(testUploadUdfRenameFileName) ); }); } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/UserE2ETest.java
/* * Licensed to 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. Apache Software Foundation (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.
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/UserE2ETest.java
* 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. */ package org.apache.dolphinscheduler.e2e.cases; import static org.assertj.core.api.Assertions.assertThat; import static org.awaitility.Awaitility.await; import org.apache.dolphinscheduler.e2e.core.DolphinScheduler; import org.apache.dolphinscheduler.e2e.pages.LoginPage; import org.apache.dolphinscheduler.e2e.pages.common.NavBarPage; import org.apache.dolphinscheduler.e2e.pages.security.SecurityPage; import org.apache.dolphinscheduler.e2e.pages.security.TenantPage; import org.apache.dolphinscheduler.e2e.pages.security.UserPage; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Order; import org.junit.jupiter.api.Test; import org.openqa.selenium.By; import org.openqa.selenium.WebElement; import org.openqa.selenium.remote.RemoteWebDriver; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; @DolphinScheduler(composeFiles = "docker/basic/docker-compose.yaml")
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/UserE2ETest.java
class UserE2ETest { private static final String tenant = System.getProperty("user.name"); private static final String user = "test_user"; private static final String password = "testUser123"; private static final String email = "[email protected]"; private static final String phone = "15812389765"; private static final String editUser = "edit_test_user"; private static final String editPassword = "editTestUser123"; private static final String editEmail = "[email protected]"; private static final String editPhone = "15812389780"; private static RemoteWebDriver browser; @BeforeAll public static void setup() { TenantPage tenantPage = new LoginPage(browser) .login("admin", "dolphinscheduler123") .goToNav(SecurityPage.class) .goToTab(TenantPage.class) .create(tenant); await().untilAsserted(() -> assertThat(tenantPage.tenantList()) .as("Tenant list should contain newly-created tenant") .extracting(WebElement::getText) .anyMatch(it -> it.contains(tenant))); tenantPage.goToNav(SecurityPage.class) .goToTab(UserPage.class); } @AfterAll public static void cleanup() { new NavBarPage(browser) .goToNav(SecurityPage.class)
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/UserE2ETest.java
.goToTab(TenantPage.class) .delete(tenant); } @Test @Order(1) void testCreateUser() { final UserPage page = new UserPage(browser); page.create(user, password, email, phone, tenant); await().untilAsserted(() -> { browser.navigate().refresh(); assertThat(page.userList()) .as("User list should contain newly-created user") .extracting(WebElement::getText) .anyMatch(it -> it.contains(user)); }); } @Test @Order(20) void testCreateDuplicateUser() { final UserPage page = new UserPage(browser); page.create(user, password, email, phone, tenant); await().untilAsserted(() -> assertThat(browser.findElement(By.tagName("body")).getText()) .contains("already exists") ); page.createUserForm().buttonCancel().click(); } @Test @Order(30) void testEditUser() {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/UserE2ETest.java
UserPage page = new UserPage(browser); new WebDriverWait(browser, 20).until(ExpectedConditions.visibilityOfElementLocated( new By.ByClassName("name"))); browser.navigate().refresh(); page.update(user, editUser, editPassword, editEmail, editPhone, tenant); await().untilAsserted(() -> { browser.navigate().refresh(); assertThat(page.userList()) .as("User list should contain newly-modified User") .extracting(WebElement::getText) .anyMatch(it -> it.contains(editUser)); }); } @Test @Order(40) void testDeleteUser() { final UserPage page = new UserPage(browser); page.delete(editUser); await().untilAsserted(() -> { browser.navigate().refresh(); assertThat( page.userList() ).noneMatch( it -> it.getText().contains(user) || it.getText().contains(editUser) ); }); } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/WorkflowE2ETest.java
/* * Licensed to 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. Apache Software Foundation (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
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/WorkflowE2ETest.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.dolphinscheduler.e2e.cases; import org.apache.dolphinscheduler.e2e.core.DolphinScheduler; import org.apache.dolphinscheduler.e2e.pages.LoginPage; import org.apache.dolphinscheduler.e2e.pages.common.NavBarPage; import org.apache.dolphinscheduler.e2e.pages.project.ProjectDetailPage; import org.apache.dolphinscheduler.e2e.pages.project.ProjectPage; import org.apache.dolphinscheduler.e2e.pages.project.workflow.WorkflowDefinitionTab; import org.apache.dolphinscheduler.e2e.pages.project.workflow.WorkflowForm.TaskType; import org.apache.dolphinscheduler.e2e.pages.project.workflow.WorkflowInstanceTab; import org.apache.dolphinscheduler.e2e.pages.project.workflow.WorkflowInstanceTab.Row; import org.apache.dolphinscheduler.e2e.pages.project.workflow.task.ShellTaskForm; import org.apache.dolphinscheduler.e2e.pages.project.workflow.task.SubWorkflowTaskForm; import org.apache.dolphinscheduler.e2e.pages.security.SecurityPage; import org.apache.dolphinscheduler.e2e.pages.security.TenantPage; import org.apache.dolphinscheduler.e2e.pages.security.UserPage; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Order; import org.junit.jupiter.api.Test; import org.openqa.selenium.By; import org.openqa.selenium.remote.RemoteWebDriver; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; import static org.assertj.core.api.Assertions.assertThat; import static org.awaitility.Awaitility.await; @DolphinScheduler(composeFiles = "docker/basic/docker-compose.yaml")
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/WorkflowE2ETest.java
class WorkflowE2ETest { private static final String project = "test-workflow-1"; private static final String user = "admin"; private static final String password = "dolphinscheduler123"; private static final String email = "[email protected]"; private static final String phone = "15800000000"; private static final String tenant = System.getProperty("user.name"); private static RemoteWebDriver browser; @BeforeAll public static void setup() { UserPage userPage = new LoginPage(browser) .login("admin", "dolphinscheduler123") .goToNav(SecurityPage.class) .goToTab(TenantPage.class) .create(tenant) .goToNav(SecurityPage.class) .goToTab(UserPage.class); new WebDriverWait(userPage.driver(), 20).until(ExpectedConditions.visibilityOfElementLocated( new By.ByClassName("name"))); userPage.update(user, user, password, email, phone, tenant) .goToNav(ProjectPage.class) .create(project)
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/WorkflowE2ETest.java
; } @AfterAll public static void cleanup() { new NavBarPage(browser) .goToNav(ProjectPage.class) .goTo(project) .goToTab(WorkflowDefinitionTab.class) .cancelPublishAll() .deleteAll() ; new NavBarPage(browser) .goToNav(ProjectPage.class) .delete(project) .goToNav(SecurityPage.class) .goToTab(TenantPage.class) .delete(tenant) ; } @Test @Order(1) void testCreateWorkflow() { final String workflow = "test-workflow-1"; WorkflowDefinitionTab workflowDefinitionPage = new ProjectPage(browser) .goTo(project) .goToTab(WorkflowDefinitionTab.class); workflowDefinitionPage .createWorkflow() .<ShellTaskForm> addTask(TaskType.SHELL)
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/WorkflowE2ETest.java
.script("echo ${today}\necho ${global_param}\n") .name("test-1") .addParam("today", "${system.datetime}") .submit() .submit() .name(workflow) .tenant(tenant) .addGlobalParam("global_param", "hello world") .submit() ; await().untilAsserted(() -> assertThat(workflowDefinitionPage.workflowList()) .as("Workflow list should contain newly-created workflow") .anyMatch( it -> it.getText().contains(workflow) )); workflowDefinitionPage.publish(workflow); } @Test @Order(10) void testCreateSubWorkflow() { final String workflow = "test-sub-workflow-1"; WorkflowDefinitionTab workflowDefinitionPage = new ProjectPage(browser) .goToNav(ProjectPage.class) .goTo(project) .goToTab(WorkflowDefinitionTab.class); workflowDefinitionPage .createWorkflow() .<SubWorkflowTaskForm> addTask(TaskType.SUB_PROCESS) .childNode("test-workflow-1")
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/WorkflowE2ETest.java
.name("test-sub-1") .submit() .submit() .name(workflow) .tenant(tenant) .addGlobalParam("global_param", "hello world") .submit() ; await().untilAsserted(() -> assertThat( workflowDefinitionPage.workflowList() ).anyMatch(it -> it.getText().contains(workflow))); workflowDefinitionPage.publish(workflow); } @Test @Order(30) void testRunWorkflow() { final String workflow = "test-workflow-1"; final ProjectDetailPage projectPage = new ProjectPage(browser) .goToNav(ProjectPage.class) .goTo(project); projectPage .goToTab(WorkflowInstanceTab.class) .deleteAll(); projectPage .goToTab(WorkflowDefinitionTab.class) .run(workflow) .submit(); await().untilAsserted(() -> { browser.navigate().refresh();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/WorkflowE2ETest.java
final Row row = projectPage .goToTab(WorkflowInstanceTab.class) .instances() .iterator() .next(); assertThat(row.isSuccess()).isTrue(); assertThat(row.executionTime()).isEqualTo(1); }); projectPage .goToTab(WorkflowInstanceTab.class) .instances() .stream() .filter(it -> it.rerunButton().isDisplayed()) .iterator() .next() .rerun(); await().untilAsserted(() -> { browser.navigate().refresh(); final Row row = projectPage .goToTab(WorkflowInstanceTab.class) .instances() .iterator() .next(); assertThat(row.isSuccess()).isTrue(); assertThat(row.executionTime()).isEqualTo(2); }); } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/security/UserPage.java
/* * Licensed to 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. Apache Software Foundation (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. */ package org.apache.dolphinscheduler.e2e.pages.security; import org.apache.dolphinscheduler.e2e.pages.common.NavBarPage;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/security/UserPage.java
import java.util.List; import org.openqa.selenium.By; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.Keys; import org.openqa.selenium.WebElement; import org.openqa.selenium.remote.RemoteWebDriver; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.FindBys; import org.openqa.selenium.support.PageFactory; import lombok.Getter; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; @Getter public final class UserPage extends NavBarPage implements SecurityPage.Tab { @FindBy(className = "btn-create-user") private WebElement buttonCreateUser; @FindBy(className = "items") private List<WebElement> userList; @FindBys({ @FindBy(className = "n-popconfirm__action"), @FindBy(className = "n-button--primary-type"), }) private WebElement buttonConfirm; private final UserForm createUserForm = new UserForm(); private final UserForm editUserForm = new UserForm(); public UserPage(RemoteWebDriver driver) { super(driver); } public UserPage create(String user, String password, String email, String phone, String tenant) { buttonCreateUser().click();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/security/UserPage.java
createUserForm().inputUserName().sendKeys(user); createUserForm().inputUserPassword().sendKeys(password); createUserForm().btnSelectTenantDropdown().click(); new WebDriverWait(driver, 5).until(ExpectedConditions.visibilityOfElementLocated(new By.ByClassName( "n-base-select-option__content"))); createUserForm().selectTenant() .stream() .filter(it -> it.getText().contains(tenant)) .findFirst() .orElseThrow(() -> new RuntimeException(String.format("No %s in tenant dropdown list", tenant))) .click(); createUserForm().inputEmail().sendKeys(email); createUserForm().inputPhone().sendKeys(phone); createUserForm().buttonSubmit().click(); return this; } public UserPage update(String user, String editUser, String editPassword, String editEmail, String editPhone, String tenant) { userList().stream() .filter(it -> it.findElement(By.className("name")).getAttribute("innerHTML").contains(user)) .flatMap(it -> it.findElements(By.className("edit")).stream()) .filter(WebElement::isDisplayed) .findFirst() .orElseThrow(() -> new RuntimeException("No edit button in user list")) .click(); editUserForm().inputUserName().sendKeys(Keys.CONTROL+"a"); editUserForm().inputUserName().sendKeys(Keys.BACK_SPACE); editUserForm().inputUserName().sendKeys(editUser); editUserForm().inputUserPassword().sendKeys(editPassword); createUserForm().btnSelectTenantDropdown().click();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/security/UserPage.java
new WebDriverWait(driver, 5).until(ExpectedConditions.visibilityOfElementLocated(new By.ByClassName( "n-base-select-option__content"))); createUserForm().selectTenant() .stream() .filter(it -> it.getText().contains(tenant)) .findFirst() .orElseThrow(() -> new RuntimeException(String.format("No %s in tenant dropdown list", tenant))) .click(); editUserForm().inputEmail().sendKeys(Keys.CONTROL+"a"); editUserForm().inputEmail().sendKeys(Keys.BACK_SPACE); editUserForm().inputEmail().sendKeys(editEmail); editUserForm().inputPhone().sendKeys(Keys.CONTROL+"a"); editUserForm().inputPhone().sendKeys(Keys.BACK_SPACE); editUserForm().inputPhone().sendKeys(editPhone); editUserForm().buttonSubmit().click(); return this; } public UserPage delete(String user) { userList() .stream() .filter(it -> it.findElement(By.className("name")).getAttribute("innerHTML").contains(user)) .flatMap(it -> it.findElements(By.className("delete")).stream()) .filter(WebElement::isDisplayed) .findFirst() .orElseThrow(() -> new RuntimeException("No delete button in user list")) .click(); ((JavascriptExecutor) driver).executeScript("arguments[0].click();", buttonConfirm()); return this; } @Getter
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/security/UserPage.java
public class UserForm { UserForm() { PageFactory.initElements(driver, this); } @FindBys({ @FindBy(className = "input-username"), @FindBy(tagName = "input"), }) private WebElement inputUserName; @FindBys({ @FindBy(className = "input-password"), @FindBy(tagName = "input"), }) private WebElement inputUserPassword; @FindBys({ @FindBy(className = "select-tenant"), @FindBy(className = "n-base-selection"), }) private WebElement btnSelectTenantDropdown;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### 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 When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
2022-03-14T10:08:59Z
java
2022-03-28T09:55:15Z
dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/security/UserPage.java
@FindBy(className = "n-base-select-option__content") private List<WebElement> selectTenant; @FindBys({ @FindBy(className = "select-queue"), @FindBy(className = "n-base-selection"), }) private WebElement btnSelectQueueDropdown; @FindBy(className = "n-base-select-option__content") private List<WebElement> selectQueue; @FindBys({ @FindBy(className = "input-email"), @FindBy(tagName = "input"), }) private WebElement inputEmail; @FindBys({ @FindBy(className = "input-phone"), @FindBy(tagName = "input"), }) private WebElement inputPhone; @FindBy(className = "radio-state-enable") private WebElement radioStateEnable; @FindBy(className = "radio-state-disable") private WebElement radioStateDisable; @FindBy(className = "btn-submit") private WebElement buttonSubmit; @FindBy(className = "btn-cancel") private WebElement buttonCancel; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/AlertDao.java
/* * 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. */ package org.apache.dolphinscheduler.dao; import org.apache.dolphinscheduler.common.enums.AlertEvent; import org.apache.dolphinscheduler.common.enums.AlertStatus; import org.apache.dolphinscheduler.common.enums.AlertWarnLevel; import org.apache.dolphinscheduler.common.enums.WarningType; import org.apache.dolphinscheduler.common.utils.JSONUtils; import org.apache.dolphinscheduler.dao.entity.Alert; import org.apache.dolphinscheduler.dao.entity.AlertPluginInstance; import org.apache.dolphinscheduler.dao.entity.ProcessAlertContent; import org.apache.dolphinscheduler.dao.entity.ProcessDefinition; import org.apache.dolphinscheduler.dao.entity.ProcessInstance; import org.apache.dolphinscheduler.dao.entity.ServerAlertContent; import org.apache.dolphinscheduler.dao.entity.TaskDefinition; import org.apache.dolphinscheduler.dao.entity.TaskInstance;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/AlertDao.java
import org.apache.dolphinscheduler.dao.mapper.AlertGroupMapper; import org.apache.dolphinscheduler.dao.mapper.AlertMapper; import org.apache.dolphinscheduler.dao.mapper.AlertPluginInstanceMapper; import org.apache.commons.lang.StringUtils; import java.util.ArrayList; import java.util.Arrays; import java.util.Date; import java.util.List; import java.util.stream.Collectors; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import com.google.common.collect.Lists; @Component public class AlertDao { @Autowired private AlertMapper alertMapper; @Autowired private AlertPluginInstanceMapper alertPluginInstanceMapper; @Autowired private AlertGroupMapper alertGroupMapper; /** * insert alert * * @param alert alert * @return add alert result */ public int addAlert(Alert alert) { return alertMapper.insert(alert); } /**
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/AlertDao.java
* update alert * * @param alertStatus alertStatus * @param log log * @param id id * @return update alert result */ public int updateAlert(AlertStatus alertStatus, String log, int id) { Alert alert = alertMapper.selectById(id); alert.setAlertStatus(alertStatus); alert.setUpdateTime(new Date()); alert.setLog(log); return alertMapper.updateById(alert); } /** * MasterServer or WorkerServer stoped * * @param alertGroupId alertGroupId * @param host host * @param serverType serverType */ public void sendServerStopedAlert(int alertGroupId, String host, String serverType) { ServerAlertContent serverStopAlertContent = ServerAlertContent.newBuilder(). type(serverType) .host(host) .event(AlertEvent.SERVER_DOWN) .warningLevel(AlertWarnLevel.SERIOUS). build(); String content = JSONUtils.toJsonString(Lists.newArrayList(serverStopAlertContent)); Alert alert = new Alert();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/AlertDao.java
alert.setTitle("Fault tolerance warning"); alert.setWarningType(WarningType.FAILURE); alert.setAlertStatus(AlertStatus.WAIT_EXECUTION); alert.setContent(content); alert.setAlertGroupId(alertGroupId); alert.setCreateTime(new Date()); alert.setUpdateTime(new Date()); alertMapper.insertAlertWhenServerCrash(alert); } /** * process time out alert * * @param processInstance processInstance * @param processDefinition processDefinition */ public void sendProcessTimeoutAlert(ProcessInstance processInstance, ProcessDefinition processDefinition) { int alertGroupId = processInstance.getWarningGroupId(); Alert alert = new Alert(); List<ProcessAlertContent> processAlertContentList = new ArrayList<>(1); ProcessAlertContent processAlertContent = ProcessAlertContent.newBuilder() .projectCode(processDefinition.getProjectCode()) .projectName(processDefinition.getProjectName()) .owner(processDefinition.getUserName()) .processId(processInstance.getId()) .processDefinitionCode(processInstance.getProcessDefinitionCode()) .processName(processInstance.getName()) .processStartTime(processInstance.getStartTime()) .processHost(processInstance.getHost()) .event(AlertEvent.TIME_OUT)
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/AlertDao.java
.warningLevel(AlertWarnLevel.MIDDLE) .build(); processAlertContentList.add(processAlertContent); String content = JSONUtils.toJsonString(processAlertContentList); alert.setTitle("Process Timeout Warn"); saveTaskTimeoutAlert(alert, content, alertGroupId); } private void saveTaskTimeoutAlert(Alert alert, String content, int alertGroupId) { alert.setAlertGroupId(alertGroupId); alert.setWarningType(WarningType.FAILURE); alert.setContent(content); alert.setCreateTime(new Date()); alert.setUpdateTime(new Date()); alertMapper.insert(alert); } /** * task timeout warn * * @param processInstance processInstanceId * @param taskInstance taskInstance * @param taskDefinition taskDefinition */ public void sendTaskTimeoutAlert(ProcessInstance processInstance, TaskInstance taskInstance, TaskDefinition taskDefinition) { Alert alert = new Alert(); List<ProcessAlertContent> processAlertContentList = new ArrayList<>(1); ProcessAlertContent processAlertContent = ProcessAlertContent.newBuilder() .projectCode(taskDefinition.getProjectCode()) .projectName(taskDefinition.getProjectName()) .owner(taskDefinition.getUserName()) .processId(processInstance.getId())
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/AlertDao.java
.processDefinitionCode(processInstance.getProcessDefinitionCode()) .processName(processInstance.getName()) .taskCode(taskInstance.getTaskCode()) .taskName(taskInstance.getName()) .taskType(taskInstance.getTaskType()) .taskStartTime(taskInstance.getStartTime()) .taskHost(taskInstance.getHost()) .event(AlertEvent.TIME_OUT) .warningLevel(AlertWarnLevel.MIDDLE) .build(); processAlertContentList.add(processAlertContent); String content = JSONUtils.toJsonString(processAlertContentList); alert.setTitle("Task Timeout Warn"); saveTaskTimeoutAlert(alert, content, processInstance.getWarningGroupId()); } /** * List alerts that are pending for execution */ public List<Alert> listPendingAlerts() { return alertMapper.listAlertByStatus(AlertStatus.WAIT_EXECUTION); } /** * for test * * @return AlertMapper */ public AlertMapper getAlertMapper() { return alertMapper; } /**
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/AlertDao.java
* list all alert plugin instance by alert group id * * @param alertGroupId alert group id * @return AlertPluginInstance list */ public List<AlertPluginInstance> listInstanceByAlertGroupId(int alertGroupId) { String alertInstanceIdsParam = alertGroupMapper.queryAlertGroupInstanceIdsById(alertGroupId); if (StringUtils.isNotBlank(alertInstanceIdsParam)) { String[] idsArray = alertInstanceIdsParam.split(","); List<Integer> ids = Arrays.stream(idsArray) .map(s -> Integer.parseInt(s.trim())) .collect(Collectors.toList()); return alertPluginInstanceMapper.queryByIds(ids); } return null; } public AlertPluginInstanceMapper getAlertPluginInstanceMapper() { return alertPluginInstanceMapper; } public void setAlertPluginInstanceMapper(AlertPluginInstanceMapper alertPluginInstanceMapper) { this.alertPluginInstanceMapper = alertPluginInstanceMapper; } public AlertGroupMapper getAlertGroupMapper() { return alertGroupMapper; } public void setAlertGroupMapper(AlertGroupMapper alertGroupMapper) { this.alertGroupMapper = alertGroupMapper; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/ProjectUser.java
/* * 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. */ package org.apache.dolphinscheduler.dao.entity; import java.util.Date; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; @TableName("t_ds_relation_project_user") public class ProjectUser {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/ProjectUser.java
/** * id */ @TableId(value = "id", type = IdType.AUTO) private int id; @TableField("user_id") private int userId; @TableField("project_id") private int projectId; /** * project name */ @TableField(exist = false) private String projectName; /** * user name */ @TableField(exist = false) private String userName; /** * permission */ private int perm; @TableField("create_time") private Date createTime; @TableField("update_time") private Date updateTime; public int getId() { return id; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/ProjectUser.java
public void setId(int id) { this.id = id; } public int getUserId() { return userId; } public void setUserId(int userId) { this.userId = userId; } public int getProjectId() { return projectId; } public void setProjectId(int projectId) { this.projectId = projectId; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public Date getUpdateTime() { return updateTime; } public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } public String getProjectName() { return projectName; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/ProjectUser.java
public void setProjectName(String projectName) { this.projectName = projectName; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public int getPerm() { return perm; } public void setPerm(int perm) { this.perm = perm; } @Override public String toString() { return "ProjectUser{" + "id=" + id + ", userId=" + userId + ", projectId=" + projectId + ", projectName='" + projectName + '\'' + ", userName='" + userName + '\'' + ", perm=" + perm + ", createTime=" + createTime + ", updateTime=" + updateTime + '}'; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
/* * Lcensed to the Apache Software Foundaton (ASF) under one or more * contrbutor lcense agreements. See the NOTICE fle dstrbuted wth * ths work for addtonal nformaton regardng copyrght ownershp. * The ASF lcenses ths fle to You under the Apache Lcense, Verson 2.0 * (the "Lcense"); you may not use ths fle except n complance wth * the Lcense. You may obtan a copy of the Lcense at * * http://www.apache.org/lcenses/LICENSE-2.0 * * Unless requred by applcable law or agreed to n wrtng, software * dstrbuted under the Lcense s dstrbuted on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, ether express or mpled. * See the Lcense for the specfc language governng permssons and * lmtatons under the Lcense. */ package org.apache.dolphnscheduler.server.master.runner; mport statc org.apache.dolphnscheduler.common.Constants.CMDPARAM_COMPLEMENT_DATA_END_DATE;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
mport statc org.apache.dolphnscheduler.common.Constants.CMDPARAM_COMPLEMENT_DATA_START_DATE; mport statc org.apache.dolphnscheduler.common.Constants.CMD_PARAM_RECOVERY_START_NODE_STRING; mport statc org.apache.dolphnscheduler.common.Constants.CMD_PARAM_RECOVER_PROCESS_ID_STRING; mport statc org.apache.dolphnscheduler.common.Constants.CMD_PARAM_START_NODES; mport statc org.apache.dolphnscheduler.common.Constants.DEFAULT_WORKER_GROUP; mport statc org.apache.dolphnscheduler.plugn.task.ap.TaskConstants.TASK_TYPE_BLOCKING; mport org.apache.dolphnscheduler.common.Constants; mport org.apache.dolphnscheduler.common.enums.CommandType; mport org.apache.dolphnscheduler.common.enums.FalureStrategy; mport org.apache.dolphnscheduler.common.enums.Flag; mport org.apache.dolphnscheduler.common.enums.Prorty; mport org.apache.dolphnscheduler.common.enums.StateEvent; mport org.apache.dolphnscheduler.common.enums.StateEventType; mport org.apache.dolphnscheduler.common.enums.TaskDependType; mport org.apache.dolphnscheduler.common.enums.TaskGroupQueueStatus; mport org.apache.dolphnscheduler.plugn.task.ap.enums.TaskTmeoutStrategy; mport org.apache.dolphnscheduler.common.enums.TmeoutFlag; mport org.apache.dolphnscheduler.common.graph.DAG; mport org.apache.dolphnscheduler.common.model.TaskNode; mport org.apache.dolphnscheduler.common.model.TaskNodeRelaton; mport org.apache.dolphnscheduler.common.process.ProcessDag; mport org.apache.dolphnscheduler.common.utls.DateUtls; mport org.apache.dolphnscheduler.common.utls.JSONUtls; mport org.apache.dolphnscheduler.common.utls.NetUtls; mport org.apache.dolphnscheduler.common.utls.ParameterUtls; mport org.apache.dolphnscheduler.dao.entty.Command; mport org.apache.dolphnscheduler.dao.entty.Envronment; mport org.apache.dolphnscheduler.dao.entty.ProcessDefnton; mport org.apache.dolphnscheduler.dao.entty.ProcessInstance; mport org.apache.dolphnscheduler.dao.entty.ProcessTaskRelaton;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
mport org.apache.dolphnscheduler.dao.entty.ProjectUser; mport org.apache.dolphnscheduler.dao.entty.Schedule; mport org.apache.dolphnscheduler.dao.entty.TaskDefntonLog; mport org.apache.dolphnscheduler.dao.entty.TaskGroupQueue; mport org.apache.dolphnscheduler.dao.entty.TaskInstance; mport org.apache.dolphnscheduler.dao.utls.DagHelper; mport org.apache.dolphnscheduler.plugn.task.ap.enums.DependResult; mport org.apache.dolphnscheduler.plugn.task.ap.enums.Drect; mport org.apache.dolphnscheduler.plugn.task.ap.enums.ExecutonStatus; mport org.apache.dolphnscheduler.plugn.task.ap.model.Property; mport org.apache.dolphnscheduler.plugn.task.ap.parameters.BlockngParameters; mport org.apache.dolphnscheduler.remote.command.HostUpdateCommand; mport org.apache.dolphnscheduler.remote.utls.Host; mport org.apache.dolphnscheduler.server.master.confg.MasterConfg; mport org.apache.dolphnscheduler.server.master.dspatch.executor.NettyExecutorManager; mport org.apache.dolphnscheduler.server.master.runner.task.ITaskProcessor; mport org.apache.dolphnscheduler.server.master.runner.task.TaskActon; mport org.apache.dolphnscheduler.server.master.runner.task.TaskProcessorFactory; mport org.apache.dolphnscheduler.servce.alert.ProcessAlertManager; mport org.apache.dolphnscheduler.servce.process.ProcessServce; mport org.apache.dolphnscheduler.servce.quartz.cron.CronUtls; mport org.apache.dolphnscheduler.servce.queue.PeerTaskInstancePrortyQueue; mport org.apache.commons.collectons.CollectonUtls; mport org.apache.commons.lang.StrngUtls; mport java.utl.ArrayLst; mport java.utl.Arrays; mport java.utl.Collecton; mport java.utl.Date; mport java.utl.HashMap; mport java.utl.Iterator;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
mport java.utl.Lst; mport java.utl.Map; mport java.utl.Map.Entry; mport java.utl.Objects; mport java.utl.Set; mport java.utl.concurrent.ConcurrentHashMap; mport java.utl.concurrent.ConcurrentLnkedQueue; mport java.utl.concurrent.atomc.AtomcBoolean; mport org.slf4j.Logger; mport org.slf4j.LoggerFactory; mport com.google.common.collect.Lsts; /** * master exec thread,splt dag */ publc class WorkflowExecuteThread { /** * logger of WorkflowExecuteThread */ prvate statc fnal Logger logger = LoggerFactory.getLogger(WorkflowExecuteThread.class); /** * master confg */ prvate MasterConfg masterConfg; /** * process servce */ prvate ProcessServce processServce; /** * alert manager */
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
prvate ProcessAlertManager processAlertManager; /** * netty executor manager */ prvate NettyExecutorManager nettyExecutorManager; /** * process nstance */ prvate ProcessInstance processInstance; /** * process defnton */ prvate ProcessDefnton processDefnton; /** * the object of DAG */ prvate DAG<Strng, TaskNode, TaskNodeRelaton> dag; /** * key of workflow */ prvate Strng key; /** * start flag, true: start nodes submt completely */ prvate boolean sStart = false; /** * submt falure nodes */ prvate boolean taskFaledSubmt = false; /**
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
* task nstance hash map, taskId as key */ prvate Map<Integer, TaskInstance> taskInstanceMap = new ConcurrentHashMap<>(); /** * runnng taskProcessor, taskCode as key, taskProcessor as value * only on taskProcessor per taskCode */ prvate fnal Map<Long, ITaskProcessor> actveTaskProcessorMaps = new ConcurrentHashMap<>(); /** * vald task map, taskCode as key, taskId as value * n a DAG, only one taskInstance per taskCode s vald */ prvate Map<Long, Integer> valdTaskMap = new ConcurrentHashMap<>(); /** * error task map, taskCode as key, taskInstanceId as value * n a DAG, only one taskInstance per taskCode s vald */ prvate Map<Long, Integer> errorTaskMap = new ConcurrentHashMap<>(); /** * complete task map, taskCode as key, taskInstanceId as value * n a DAG, only one taskInstance per taskCode s vald */ prvate Map<Long, Integer> completeTaskMap = new ConcurrentHashMap<>(); /** * depend faled task map, taskCode as key, taskId as value */ prvate Map<Long, Integer> dependFaledTaskMap = new ConcurrentHashMap<>(); /** * forbdden task map, code as key */
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
prvate Map<Long, TaskNode> forbddenTaskMap = new ConcurrentHashMap<>(); /** * skp task map, code as key */ prvate Map<Strng, TaskNode> skpTaskNodeMap = new ConcurrentHashMap<>(); /** * complement date lst */ prvate Lst<Date> complementLstDate = Lsts.newLnkedLst(); /** * state event queue */ prvate ConcurrentLnkedQueue<StateEvent> stateEvents = new ConcurrentLnkedQueue<>(); /** * ready to submt task queue */ prvate PeerTaskInstancePrortyQueue readyToSubmtTaskQueue = new PeerTaskInstancePrortyQueue(); /** * wat to retry taskInstance map, taskCode as key, taskInstance as value * before retry, the taskInstance d s 0 */ prvate Map<Long, TaskInstance> watToRetryTaskInstanceMap = new ConcurrentHashMap<>(); /** * state wheel execute thread */ prvate StateWheelExecuteThread stateWheelExecuteThread; /** * constructor of WorkflowExecuteThread * * @param processInstance processInstance
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
* @param processServce processServce * @param nettyExecutorManager nettyExecutorManager * @param processAlertManager processAlertManager * @param masterConfg masterConfg * @param stateWheelExecuteThread stateWheelExecuteThread */ publc WorkflowExecuteThread(ProcessInstance processInstance , ProcessServce processServce , NettyExecutorManager nettyExecutorManager , ProcessAlertManager processAlertManager , MasterConfg masterConfg , StateWheelExecuteThread stateWheelExecuteThread) { ths.processServce = processServce; ths.processInstance = processInstance; ths.masterConfg = masterConfg; ths.nettyExecutorManager = nettyExecutorManager; ths.processAlertManager = processAlertManager; ths.stateWheelExecuteThread = stateWheelExecuteThread; } /** * the process start nodes are submtted completely. */ publc boolean sStart() { return ths.sStart; } /** * handle event */ publc vod handleEvents() { f (!sStart) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return; } whle (!ths.stateEvents.sEmpty()) { try { StateEvent stateEvent = ths.stateEvents.peek(); f (stateEventHandler(stateEvent)) { ths.stateEvents.remove(stateEvent); } } catch (Excepton e) { logger.error("state handle error:", e); } } } publc Strng getKey() { f (StrngUtls.sNotEmpty(key) || ths.processDefnton == null) { return key; } key = Strng.format("%d_%d_%d", ths.processDefnton.getCode(), ths.processDefnton.getVerson(), ths.processInstance.getId()); return key; } publc boolean addStateEvent(StateEvent stateEvent) { f (processInstance.getId() != stateEvent.getProcessInstanceId()) { logger.nfo("state event would be abounded :{}", stateEvent.toStrng()); return false; } ths.stateEvents.add(stateEvent);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return true; } publc nt eventSze() { return ths.stateEvents.sze(); } publc ProcessInstance getProcessInstance() { return ths.processInstance; } prvate boolean stateEventHandler(StateEvent stateEvent) { logger.nfo("process event: {}", stateEvent.toStrng()); f (!checkProcessInstance(stateEvent)) { return false; } boolean result = false; swtch (stateEvent.getType()) { case PROCESS_STATE_CHANGE: result = processStateChangeHandler(stateEvent); break; case TASK_STATE_CHANGE: result = taskStateChangeHandler(stateEvent); break; case PROCESS_TIMEOUT: result = processTmeout(); break; case TASK_TIMEOUT: result = taskTmeout(stateEvent); break; case WAIT_TASK_GROUP: result = checkForceStartAndWakeUp(stateEvent); break;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
case TASK_RETRY: result = taskRetryEventHandler(stateEvent); break; case PROCESS_BLOCKED: result = processBlockHandler(stateEvent); break; default: break; } f (result) { ths.stateEvents.remove(stateEvent); } return result; } prvate boolean checkForceStartAndWakeUp(StateEvent stateEvent) { TaskGroupQueue taskGroupQueue = ths.processServce.loadTaskGroupQueue(stateEvent.getTaskInstanceId()); f (taskGroupQueue.getForceStart() == Flag.YES.getCode()) { TaskInstance taskInstance = ths.processServce.fndTaskInstanceById(stateEvent.getTaskInstanceId()); ITaskProcessor taskProcessor = actveTaskProcessorMaps.get(taskInstance.getTaskCode()); ProcessInstance processInstance = ths.processServce.fndProcessInstanceById(taskInstance.getProcessInstanceId()); taskProcessor.nt(taskInstance, processInstance); taskProcessor.acton(TaskActon.DISPATCH); ths.processServce.updateTaskGroupQueueStatus(taskGroupQueue.getId(), TaskGroupQueueStatus.ACQUIRE_SUCCESS.getCode()); return true; } f (taskGroupQueue.getInQueue() == Flag.YES.getCode()) { boolean acqureTaskGroup = processServce.acqureTaskGroupAgan(taskGroupQueue); f (acqureTaskGroup) { TaskInstance taskInstance = ths.processServce.fndTaskInstanceById(stateEvent.getTaskInstanceId()); ITaskProcessor taskProcessor = actveTaskProcessorMaps.get(taskInstance.getTaskCode());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
ProcessInstance processInstance = ths.processServce.fndProcessInstanceById(taskInstance.getProcessInstanceId()); taskProcessor.nt(taskInstance, processInstance); taskProcessor.acton(TaskActon.DISPATCH); return true; } } return false; } prvate boolean taskTmeout(StateEvent stateEvent) { f (!checkTaskInstanceByStateEvent(stateEvent)) { return true; } TaskInstance taskInstance = taskInstanceMap.get(stateEvent.getTaskInstanceId()); f (TmeoutFlag.CLOSE == taskInstance.getTaskDefne().getTmeoutFlag()) { return true; } TaskTmeoutStrategy taskTmeoutStrategy = taskInstance.getTaskDefne().getTmeoutNotfyStrategy(); f (TaskTmeoutStrategy.FAILED == taskTmeoutStrategy) { ITaskProcessor taskProcessor = actveTaskProcessorMaps.get(taskInstance.getTaskCode()); taskProcessor.acton(TaskActon.TIMEOUT); } else { processAlertManager.sendTaskTmeoutAlert(processInstance, taskInstance, taskInstance.getTaskDefne()); } return true; } prvate boolean processTmeout() { ths.processAlertManager.sendProcessTmeoutAlert(ths.processInstance, ths.processDefnton); return true; } prvate boolean taskStateChangeHandler(StateEvent stateEvent) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
f (!checkTaskInstanceByStateEvent(stateEvent)) { return true; } TaskInstance task = getTaskInstance(stateEvent.getTaskInstanceId()); f (task.getState() == null) { logger.error("task state s null, state handler error: {}", stateEvent); return true; } f (task.getState().typeIsFnshed()) { f (completeTaskMap.contansKey(task.getTaskCode()) && completeTaskMap.get(task.getTaskCode()) == task.getId()) { return true; } taskFnshed(task); f (task.getTaskGroupId() > 0) { releaseTaskGroup(task); } return true; } f (actveTaskProcessorMaps.contansKey(task.getTaskCode())) { ITaskProcessor TaskProcessor = actveTaskProcessorMaps.get(task.getTaskCode()); TaskProcessor.acton(TaskActon.RUN); f (TaskProcessor.taskInstance().getState().typeIsFnshed()) { f (TaskProcessor.taskInstance().getState() != task.getState()) { task.setState(TaskProcessor.taskInstance().getState()); } taskFnshed(task); } return true; } logger.error("state handler error: {}", stateEvent);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return true; } prvate vod taskFnshed(TaskInstance taskInstance) { logger.nfo("work flow {} task d:{} code:{} state:{} ", processInstance.getId(), taskInstance.getId(), taskInstance.getTaskCode(), taskInstance.getState()); actveTaskProcessorMaps.remove(taskInstance.getTaskCode()); stateWheelExecuteThread.removeTask4TmeoutCheck(processInstance, taskInstance); stateWheelExecuteThread.removeTask4RetryCheck(processInstance, taskInstance); stateWheelExecuteThread.removeTask4StateCheck(processInstance, taskInstance); f (taskInstance.getState().typeIsSuccess()) { completeTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId()); processInstance.setVarPool(taskInstance.getVarPool()); processServce.saveProcessInstance(processInstance); f (!processInstance.sBlocked()) { submtPostNode(Long.toStrng(taskInstance.getTaskCode())); } } else f (taskInstance.taskCanRetry() && processInstance.getState() != ExecutonStatus.READY_STOP) { retryTaskInstance(taskInstance); } else f (taskInstance.getState().typeIsFalure()) { completeTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId()); f (taskInstance.sCondtonsTask() || DagHelper.haveCondtonsAfterNode(Long.toStrng(taskInstance.getTaskCode()), dag) || DagHelper.haveBlockngAfterNode(Long.toStrng(taskInstance.getTaskCode()), dag)) { submtPostNode(Long.toStrng(taskInstance.getTaskCode())); } else { errorTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
f (processInstance.getFalureStrategy() == FalureStrategy.END) { kllAllTasks(); } } } else f (taskInstance.getState().typeIsFnshed()) { completeTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId()); } ths.updateProcessInstanceState(); } /** * release task group * * @param taskInstance */ prvate vod releaseTaskGroup(TaskInstance taskInstance) { f (taskInstance.getTaskGroupId() > 0) { TaskInstance nextTaskInstance = ths.processServce.releaseTaskGroup(taskInstance); f (nextTaskInstance != null) { f (nextTaskInstance.getProcessInstanceId() == taskInstance.getProcessInstanceId()) { StateEvent nextEvent = new StateEvent(); nextEvent.setProcessInstanceId(ths.processInstance.getId()); nextEvent.setTaskInstanceId(nextTaskInstance.getId()); nextEvent.setType(StateEventType.WAIT_TASK_GROUP); ths.stateEvents.add(nextEvent); } else { ProcessInstance processInstance = ths.processServce.fndProcessInstanceById(nextTaskInstance.getProcessInstanceId()); ths.processServce.sendStartTask2Master(processInstance, nextTaskInstance.getId(), org.apache.dolphnscheduler.remote.command.CommandType.TASK_WAKEUP_EVENT_REQUEST); } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
} } /** * crate new task nstance to retry, dfferent objects from the orgnal * * @param taskInstance */ prvate vod retryTaskInstance(TaskInstance taskInstance) { f (!taskInstance.taskCanRetry()) { return; } TaskInstance newTaskInstance = cloneRetryTaskInstance(taskInstance); f (newTaskInstance == null) { logger.error("retry fal, new taskInstancce s null, task code:{}, task d:{}", taskInstance.getTaskCode(), taskInstance.getId()); return; } watToRetryTaskInstanceMap.put(newTaskInstance.getTaskCode(), newTaskInstance); f (!taskInstance.retryTaskIntervalOverTme()) { logger.nfo("falure task wll be submtted: process d: {}, task nstance code: {} state:{} retry tmes:{} / {}, nterval:{}", processInstance.getId(), newTaskInstance.getTaskCode(), newTaskInstance.getState(), newTaskInstance.getRetryTmes(), newTaskInstance.getMaxRetryTmes(), newTaskInstance.getRetryInterval()); stateWheelExecuteThread.addTask4TmeoutCheck(processInstance, newTaskInstance); stateWheelExecuteThread.addTask4RetryCheck(processInstance, newTaskInstance); } else { addTaskToStandByLst(newTaskInstance); submtStandByTask();
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
watToRetryTaskInstanceMap.remove(newTaskInstance.getTaskCode()); } } /** * handle task retry event * * @param stateEvent * @return */ prvate boolean taskRetryEventHandler(StateEvent stateEvent) { TaskInstance taskInstance = watToRetryTaskInstanceMap.get(stateEvent.getTaskCode()); addTaskToStandByLst(taskInstance); submtStandByTask(); watToRetryTaskInstanceMap.remove(stateEvent.getTaskCode()); return true; } /** * update process nstance */ publc vod refreshProcessInstance(nt processInstanceId) { logger.nfo("process nstance update: {}", processInstanceId); processInstance = processServce.fndProcessInstanceById(processInstanceId); processDefnton = processServce.fndProcessDefnton(processInstance.getProcessDefntonCode(), processInstance.getProcessDefntonVerson()); processInstance.setProcessDefnton(processDefnton); } /** * update task nstance */ publc vod refreshTaskInstance(nt taskInstanceId) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
logger.nfo("task nstance update: {} ", taskInstanceId); TaskInstance taskInstance = processServce.fndTaskInstanceById(taskInstanceId); f (taskInstance == null) { logger.error("can not fnd task nstance, d:{}", taskInstanceId); return; } processServce.packageTaskInstance(taskInstance, processInstance); taskInstanceMap.put(taskInstance.getId(), taskInstance); valdTaskMap.remove(taskInstance.getTaskCode()); f (Flag.YES == taskInstance.getFlag()) { valdTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId()); } } /** * check process nstance by state event */ publc boolean checkProcessInstance(StateEvent stateEvent) { f (ths.processInstance.getId() != stateEvent.getProcessInstanceId()) { logger.error("msmatch process nstance d: {}, state event:{}", ths.processInstance.getId(), stateEvent); return false; } return true; } /** * check f task nstance exst by state event */ publc boolean checkTaskInstanceByStateEvent(StateEvent stateEvent) { f (stateEvent.getTaskInstanceId() == 0) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
logger.error("task nstance d null, state event:{}", stateEvent); return false; } f (!taskInstanceMap.contansKey(stateEvent.getTaskInstanceId())) { logger.error("msmatch task nstance d, event:{}", stateEvent); return false; } return true; } /** * check f task nstance exst by task code */ publc boolean checkTaskInstanceByCode(long taskCode) { f (taskInstanceMap == null || taskInstanceMap.sze() == 0) { return false; } for (TaskInstance taskInstance : taskInstanceMap.values()) { f (taskInstance.getTaskCode() == taskCode) { return true; } } return false; } /** * check f task nstance exst by d */ publc boolean checkTaskInstanceById(nt taskInstanceId) { f (taskInstanceMap == null || taskInstanceMap.sze() == 0) { return false; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return taskInstanceMap.contansKey(taskInstanceId); } /** * get task nstance from memory */ publc TaskInstance getTaskInstance(nt taskInstanceId) { f (taskInstanceMap.contansKey(taskInstanceId)) { return taskInstanceMap.get(taskInstanceId); } return null; } publc TaskInstance getActveTaskInstanceByTaskCode(long taskCode) { f (actveTaskProcessorMaps.contansKey(taskCode)) { return actveTaskProcessorMaps.get(taskCode).taskInstance(); } return null; } publc TaskInstance getRetryTaskInstanceByTaskCode(long taskCode) { f (watToRetryTaskInstanceMap.contansKey(taskCode)) { return watToRetryTaskInstanceMap.get(taskCode); } return null; } prvate boolean processStateChangeHandler(StateEvent stateEvent) { try { logger.nfo("process:{} state {} change to {}", processInstance.getId(), processInstance.getState(), stateEvent.getExecutonStatus()); f (stateEvent.getExecutonStatus() == ExecutonStatus.STOP) { ths.updateProcessInstanceState(stateEvent); return true; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
f (processComplementData()) { return true; } f (stateEvent.getExecutonStatus().typeIsFnshed()) { endProcess(); } f (processInstance.getState() == ExecutonStatus.READY_STOP) { kllAllTasks(); } return true; } catch (Excepton e) { logger.error("process state change error:", e); } return true; } prvate boolean processBlockHandler(StateEvent stateEvent) { try { TaskInstance task = getTaskInstance(stateEvent.getTaskInstanceId()); f (!checkTaskInstanceByStateEvent(stateEvent)) { logger.error("task {} s not a blockng task", task.getTaskCode()); return false; } BlockngParameters parameters = JSONUtls.parseObject(task.getTaskParams(), BlockngParameters.class); f (parameters.sAlertWhenBlockng()) { ProjectUser projectUser = processServce.queryProjectWthUserByProcessInstanceId(processInstance.getId()); processAlertManager.sendProcessBlockngAlert(processInstance, projectUser); logger.nfo("processInstance {} block alert send successful!", processInstance.getId()); } } catch (Excepton e) { logger.error("sendng blockng message error:", e);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
} return true; } prvate boolean processComplementData() throws Excepton { f (!needComplementProcess()) { return false; } f (processInstance.getState() == ExecutonStatus.READY_STOP) { return false; } Date scheduleDate = processInstance.getScheduleTme(); f (scheduleDate == null) { scheduleDate = complementLstDate.get(0); } else f (processInstance.getState().typeIsFnshed()) { endProcess(); f (complementLstDate.sze() <= 0) { logger.nfo("process complement end. process d:{}", processInstance.getId()); return true; } nt ndex = complementLstDate.ndexOf(scheduleDate); f (ndex >= complementLstDate.sze() - 1 || !processInstance.getState().typeIsSuccess()) { logger.nfo("process complement end. process d:{}", processInstance.getId()); return true; } logger.nfo("process complement contnue. process d:{}, schedule tme:{} complementLstDate:{}", processInstance.getId(), processInstance.getScheduleTme(), complementLstDate.toStrng()); scheduleDate = complementLstDate.get(ndex + 1);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
} nt create = ths.createComplementDataCommand(scheduleDate); f (create > 0) { logger.nfo("create complement data command successfully."); } return true; } prvate nt createComplementDataCommand(Date scheduleDate) { Command command = new Command(); command.setScheduleTme(scheduleDate); command.setCommandType(CommandType.COMPLEMENT_DATA); command.setProcessDefntonCode(processInstance.getProcessDefntonCode()); Map<Strng, Strng> cmdParam = JSONUtls.toMap(processInstance.getCommandParam()); f (cmdParam.contansKey(Constants.CMD_PARAM_RECOVERY_START_NODE_STRING)) { cmdParam.remove(Constants.CMD_PARAM_RECOVERY_START_NODE_STRING); } cmdParam.replace(CMDPARAM_COMPLEMENT_DATA_START_DATE, DateUtls.format(scheduleDate, "yyyy-MM-dd HH:mm:ss", null)); command.setCommandParam(JSONUtls.toJsonStrng(cmdParam)); command.setTaskDependType(processInstance.getTaskDependType()); command.setFalureStrategy(processInstance.getFalureStrategy()); command.setWarnngType(processInstance.getWarnngType()); command.setWarnngGroupId(processInstance.getWarnngGroupId()); command.setStartTme(new Date()); command.setExecutorId(processInstance.getExecutorId()); command.setUpdateTme(new Date()); command.setProcessInstanceProrty(processInstance.getProcessInstanceProrty()); command.setWorkerGroup(processInstance.getWorkerGroup()); command.setEnvronmentCode(processInstance.getEnvronmentCode()); command.setDryRun(processInstance.getDryRun());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
command.setProcessInstanceId(0); command.setProcessDefntonVerson(processInstance.getProcessDefntonVerson()); return processServce.createCommand(command); } prvate boolean needComplementProcess() { f (processInstance.sComplementData() && Flag.NO == processInstance.getIsSubProcess()) { return true; } return false; } /** * process start handle */ publc vod startProcess() { f (ths.taskInstanceMap.sze() > 0) { return; } try { sStart = false; buldFlowDag(); ntTaskQueue(); submtPostNode(null); sStart = true; } catch (Excepton e) { logger.error("start process error, process nstance d:{}", processInstance.getId(), e); } } /** * process end handle
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
*/ prvate vod endProcess() { ths.stateEvents.clear(); f (processDefnton.getExecutonType().typeIsSeralWat()) { checkSeralProcess(processDefnton); } f (processInstance.getState().typeIsWatngThread()) { processServce.createRecoveryWatngThreadCommand(null, processInstance); } f (processAlertManager.sNeedToSendWarnng(processInstance)) { ProjectUser projectUser = processServce.queryProjectWthUserByProcessInstanceId(processInstance.getId()); processAlertManager.sendAlertProcessInstance(processInstance, getValdTaskLst(), projectUser); } f (checkTaskQueue()) { processServce.releaseAllTaskGroup(processInstance.getId()); } } publc vod checkSeralProcess(ProcessDefnton processDefnton) { nt nextInstanceId = processInstance.getNextProcessInstanceId(); f (nextInstanceId == 0) { ProcessInstance nextProcessInstance = ths.processServce.loadNextProcess4Seral(processInstance.getProcessDefnton().getCode(), ExecutonStatus.SERIAL_WAIT.getCode()); f (nextProcessInstance == null) { return; } nextInstanceId = nextProcessInstance.getId(); } ProcessInstance nextProcessInstance = ths.processServce.fndProcessInstanceById(nextInstanceId); f (nextProcessInstance.getState().typeIsFnshed() || nextProcessInstance.getState().typeIsRunnng()) { return;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
} Map<Strng, Object> cmdParam = new HashMap<>(); cmdParam.put(CMD_PARAM_RECOVER_PROCESS_ID_STRING, nextInstanceId); Command command = new Command(); command.setCommandType(CommandType.RECOVER_SERIAL_WAIT); command.setProcessDefntonCode(processDefnton.getCode()); command.setCommandParam(JSONUtls.toJsonStrng(cmdParam)); processServce.createCommand(command); } /** * generate process dag * * @throws Excepton excepton */ prvate vod buldFlowDag() throws Excepton { f (ths.dag != null) { return; } processDefnton = processServce.fndProcessDefnton(processInstance.getProcessDefntonCode(), processInstance.getProcessDefntonVerson()); processInstance.setProcessDefnton(processDefnton); Lst<TaskInstance> recoverNodeLst = getStartTaskInstanceLst(processInstance.getCommandParam()); Lst<ProcessTaskRelaton> processTaskRelatons = processServce.fndRelatonByCode(processDefnton.getCode(), processDefnton.getVerson()); Lst<TaskDefntonLog> taskDefntonLogs = processServce.getTaskDefneLogLstByRelaton(processTaskRelatons); Lst<TaskNode> taskNodeLst = processServce.transformTask(processTaskRelatons, taskDefntonLogs); forbddenTaskMap.clear(); taskNodeLst.forEach(taskNode -> { f (taskNode.sForbdden()) { forbddenTaskMap.put(taskNode.getCode(), taskNode); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
}); Lst<Strng> recoveryNodeCodeLst = getRecoveryNodeCodeLst(recoverNodeLst); Lst<Strng> startNodeNameLst = parseStartNodeName(processInstance.getCommandParam()); ProcessDag processDag = generateFlowDag(taskNodeLst, startNodeNameLst, recoveryNodeCodeLst, processInstance.getTaskDependType()); f (processDag == null) { logger.error("processDag s null"); return; } dag = DagHelper.buldDagGraph(processDag); } /** * nt task queue */ prvate vod ntTaskQueue() { taskFaledSubmt = false; actveTaskProcessorMaps.clear(); dependFaledTaskMap.clear(); completeTaskMap.clear(); errorTaskMap.clear(); f (!sNewProcessInstance()) { Lst<TaskInstance> valdTaskInstanceLst = processServce.fndValdTaskLstByProcessId(processInstance.getId()); for (TaskInstance task : valdTaskInstanceLst) { f (valdTaskMap.contansKey(task.getTaskCode())) { nt oldTaskInstanceId = valdTaskMap.get(task.getTaskCode()); TaskInstance oldTaskInstance = taskInstanceMap.get(oldTaskInstanceId); f (!oldTaskInstance.getState().typeIsFnshed() && task.getState().typeIsFnshed()) { task.setFlag(Flag.NO);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
processServce.updateTaskInstance(task); contnue; } logger.warn("have same taskCode taskInstance when nt task queue, taskCode:{}", task.getTaskCode()); } valdTaskMap.put(task.getTaskCode(), task.getId()); taskInstanceMap.put(task.getId(), task); f (task.sTaskComplete()) { completeTaskMap.put(task.getTaskCode(), task.getId()); contnue; } f (task.sCondtonsTask() || DagHelper.haveCondtonsAfterNode(Long.toStrng(task.getTaskCode()), dag)) { contnue; } f (task.taskCanRetry()) { f (task.getState() == ExecutonStatus.NEED_FAULT_TOLERANCE) { TaskInstance tolerantTaskInstance = cloneTolerantTaskInstance(task); addTaskToStandByLst(tolerantTaskInstance); } else { retryTaskInstance(task); } contnue; } f (task.getState().typeIsFalure()) { errorTaskMap.put(task.getTaskCode(), task.getId()); } } } f (processInstance.sComplementData() && complementLstDate.sze() == 0) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
Map<Strng, Strng> cmdParam = JSONUtls.toMap(processInstance.getCommandParam()); f (cmdParam != null && cmdParam.contansKey(CMDPARAM_COMPLEMENT_DATA_START_DATE)) { Date start = DateUtls.strngToDate(cmdParam.get(CMDPARAM_COMPLEMENT_DATA_START_DATE)); Date end = DateUtls.strngToDate(cmdParam.get(CMDPARAM_COMPLEMENT_DATA_END_DATE)); Lst<Schedule> schedules = processServce.queryReleaseSchedulerLstByProcessDefntonCode(processInstance.getProcessDefntonCode()); f (complementLstDate.sze() == 0 && needComplementProcess()) { complementLstDate = CronUtls.getSelfFreDateLst(start, end, schedules); logger.nfo(" process defnton code:{} complement data: {}", processInstance.getProcessDefntonCode(), complementLstDate.toStrng()); f (complementLstDate.sze() > 0 && Flag.NO == processInstance.getIsSubProcess()) { processInstance.setScheduleTme(complementLstDate.get(0)); processInstance.setGlobalParams(ParameterUtls.curngGlobalParams( processDefnton.getGlobalParamMap(), processDefnton.getGlobalParamLst(), CommandType.COMPLEMENT_DATA, processInstance.getScheduleTme())); processServce.updateProcessInstance(processInstance); } } } } } /** * submt task to execute * * @param taskInstance task nstance * @return TaskInstance */ prvate TaskInstance submtTaskExec(TaskInstance taskInstance) { try {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
processServce.packageTaskInstance(taskInstance, processInstance); ITaskProcessor taskProcessor = TaskProcessorFactory.getTaskProcessor(taskInstance.getTaskType()); taskProcessor.nt(taskInstance, processInstance); f (taskInstance.getState() == ExecutonStatus.RUNNING_EXECUTION && taskProcessor.getType().equalsIgnoreCase(Constants.COMMON_TASK_TYPE)) { notfyProcessHostUpdate(taskInstance); } boolean submt = taskProcessor.acton(TaskActon.SUBMIT); f (!submt) { logger.error("process d:{} name:{} submt standby task d:{} name:{} faled!", processInstance.getId(), processInstance.getName(), taskInstance.getId(), taskInstance.getName()); return null; } f (valdTaskMap.contansKey(taskInstance.getTaskCode())) { nt oldTaskInstanceId = valdTaskMap.get(taskInstance.getTaskCode()); f (taskInstance.getId() != oldTaskInstanceId) { TaskInstance oldTaskInstance = taskInstanceMap.get(oldTaskInstanceId); oldTaskInstance.setFlag(Flag.NO); processServce.updateTaskInstance(oldTaskInstance); valdTaskMap.remove(taskInstance.getTaskCode()); actveTaskProcessorMaps.remove(taskInstance.getTaskCode()); } } valdTaskMap.put(taskInstance.getTaskCode(), taskInstance.getId()); taskInstanceMap.put(taskInstance.getId(), taskInstance); actveTaskProcessorMaps.put(taskInstance.getTaskCode(), taskProcessor); taskProcessor.acton(TaskActon.RUN); stateWheelExecuteThread.addTask4TmeoutCheck(processInstance, taskInstance);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
stateWheelExecuteThread.addTask4StateCheck(processInstance, taskInstance); f (taskProcessor.taskInstance().getState().typeIsFnshed()) { f (processInstance.sBlocked()) { StateEvent processBlockEvent = new StateEvent(); processBlockEvent.setProcessInstanceId(ths.processInstance.getId()); processBlockEvent.setTaskInstanceId(taskInstance.getId()); processBlockEvent.setExecutonStatus(taskProcessor.taskInstance().getState()); processBlockEvent.setType(StateEventType.PROCESS_BLOCKED); ths.stateEvents.add(processBlockEvent); } StateEvent taskStateChangeEvent = new StateEvent(); taskStateChangeEvent.setProcessInstanceId(ths.processInstance.getId()); taskStateChangeEvent.setTaskInstanceId(taskInstance.getId()); taskStateChangeEvent.setExecutonStatus(taskProcessor.taskInstance().getState()); taskStateChangeEvent.setType(StateEventType.TASK_STATE_CHANGE); ths.stateEvents.add(taskStateChangeEvent); } return taskInstance; } catch (Excepton e) { logger.error("submt standby task error", e); return null; } } prvate vod notfyProcessHostUpdate(TaskInstance taskInstance) { f (StrngUtls.sEmpty(taskInstance.getHost())) { return; } try { HostUpdateCommand hostUpdateCommand = new HostUpdateCommand(); hostUpdateCommand.setProcessHost(NetUtls.getAddr(masterConfg.getLstenPort()));
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
hostUpdateCommand.setTaskInstanceId(taskInstance.getId()); Host host = new Host(taskInstance.getHost()); nettyExecutorManager.doExecute(host, hostUpdateCommand.convert2Command()); } catch (Excepton e) { logger.error("notfy process host update", e); } } /** * fnd task nstance n db. * n case submt more than one same name task n the same tme. * * @param taskCode task code * @param taskVerson task verson * @return TaskInstance */ prvate TaskInstance fndTaskIfExsts(Long taskCode, nt taskVerson) { Lst<TaskInstance> valdTaskInstanceLst = getValdTaskLst(); for (TaskInstance taskInstance : valdTaskInstanceLst) { f (taskInstance.getTaskCode() == taskCode && taskInstance.getTaskDefntonVerson() == taskVerson) { return taskInstance; } } return null; } /** * encapsulaton task * * @param processInstance process nstance * @param taskNode taskNode * @return TaskInstance
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
*/ prvate TaskInstance createTaskInstance(ProcessInstance processInstance, TaskNode taskNode) { TaskInstance taskInstance = fndTaskIfExsts(taskNode.getCode(), taskNode.getVerson()); f (taskInstance != null) { return taskInstance; } return newTaskInstance(processInstance, taskNode); } /** * clone a new taskInstance for retry and reset some logc felds * * @return */ publc TaskInstance cloneRetryTaskInstance(TaskInstance taskInstance) { TaskNode taskNode = dag.getNode(Long.toStrng(taskInstance.getTaskCode())); f (taskNode == null) { logger.error("taskNode s null, code:{}", taskInstance.getTaskCode()); return null; } TaskInstance newTaskInstance = newTaskInstance(processInstance, taskNode); newTaskInstance.setTaskDefne(taskInstance.getTaskDefne()); newTaskInstance.setProcessDefne(taskInstance.getProcessDefne()); newTaskInstance.setProcessInstance(processInstance); newTaskInstance.setRetryTmes(taskInstance.getRetryTmes() + 1); newTaskInstance.setState(taskInstance.getState()); newTaskInstance.setEndTme(taskInstance.getEndTme()); return newTaskInstance; } /**
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
* clone a new taskInstance for tolerant and reset some logc felds * * @return */ publc TaskInstance cloneTolerantTaskInstance(TaskInstance taskInstance) { TaskNode taskNode = dag.getNode(Long.toStrng(taskInstance.getTaskCode())); f (taskNode == null) { logger.error("taskNode s null, code:{}", taskInstance.getTaskCode()); return null; } TaskInstance newTaskInstance = newTaskInstance(processInstance, taskNode); newTaskInstance.setTaskDefne(taskInstance.getTaskDefne()); newTaskInstance.setProcessDefne(taskInstance.getProcessDefne()); newTaskInstance.setProcessInstance(processInstance); newTaskInstance.setRetryTmes(taskInstance.getRetryTmes()); newTaskInstance.setState(taskInstance.getState()); return newTaskInstance; } /** * new a taskInstance * * @param processInstance * @param taskNode * @return */ publc TaskInstance newTaskInstance(ProcessInstance processInstance, TaskNode taskNode) { TaskInstance taskInstance = new TaskInstance(); taskInstance.setTaskCode(taskNode.getCode()); taskInstance.setTaskDefntonVerson(taskNode.getVerson());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
taskInstance.setName(taskNode.getName()); taskInstance.setState(ExecutonStatus.SUBMITTED_SUCCESS); taskInstance.setProcessInstanceId(processInstance.getId()); taskInstance.setTaskType(taskNode.getType().toUpperCase()); taskInstance.setAlertFlag(Flag.NO); taskInstance.setStartTme(null); taskInstance.setFlag(Flag.YES); taskInstance.setDryRun(processInstance.getDryRun()); taskInstance.setRetryTmes(0); taskInstance.setMaxRetryTmes(taskNode.getMaxRetryTmes()); taskInstance.setRetryInterval(taskNode.getRetryInterval()); taskInstance.setTaskParams(taskNode.getTaskParams()); taskInstance.setTaskGroupId(taskNode.getTaskGroupId()); taskInstance.setTaskGroupProrty(taskNode.getTaskGroupProrty()); f (taskNode.getTaskInstanceProrty() == null) { taskInstance.setTaskInstanceProrty(Prorty.MEDIUM); } else {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
taskInstance.setTaskInstanceProrty(taskNode.getTaskInstanceProrty()); } Strng processWorkerGroup = processInstance.getWorkerGroup(); processWorkerGroup = StrngUtls.sBlank(processWorkerGroup) ? DEFAULT_WORKER_GROUP : processWorkerGroup; Strng taskWorkerGroup = StrngUtls.sBlank(taskNode.getWorkerGroup()) ? processWorkerGroup : taskNode.getWorkerGroup(); Long processEnvronmentCode = Objects.sNull(processInstance.getEnvronmentCode()) ? -1 : processInstance.getEnvronmentCode(); Long taskEnvronmentCode = Objects.sNull(taskNode.getEnvronmentCode()) ? processEnvronmentCode : taskNode.getEnvronmentCode(); f (!processWorkerGroup.equals(DEFAULT_WORKER_GROUP) && taskWorkerGroup.equals(DEFAULT_WORKER_GROUP)) { taskInstance.setWorkerGroup(processWorkerGroup); taskInstance.setEnvronmentCode(processEnvronmentCode); } else { taskInstance.setWorkerGroup(taskWorkerGroup); taskInstance.setEnvronmentCode(taskEnvronmentCode); } f (!taskInstance.getEnvronmentCode().equals(-1L)) { Envronment envronment = processServce.fndEnvronmentByCode(taskInstance.getEnvronmentCode()); f (Objects.nonNull(envronment) && StrngUtls.sNotEmpty(envronment.getConfg())) { taskInstance.setEnvronmentConfg(envronment.getConfg()); } } taskInstance.setDelayTme(taskNode.getDelayTme()); return taskInstance; } publc vod getPreVarPool(TaskInstance taskInstance, Set<Strng> preTask) { Map<Strng, Property> allProperty = new HashMap<>(); Map<Strng, TaskInstance> allTaskInstance = new HashMap<>(); f (CollectonUtls.sNotEmpty(preTask)) { for (Strng preTaskCode : preTask) { Integer taskId = completeTaskMap.get(Long.parseLong(preTaskCode));
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
f (taskId == null) { contnue; } TaskInstance preTaskInstance = taskInstanceMap.get(taskId); f (preTaskInstance == null) { contnue; } Strng preVarPool = preTaskInstance.getVarPool(); f (StrngUtls.sNotEmpty(preVarPool)) { Lst<Property> propertes = JSONUtls.toLst(preVarPool, Property.class); for (Property nfo : propertes) { setVarPoolValue(allProperty, allTaskInstance, preTaskInstance, nfo); } } } f (allProperty.sze() > 0) { taskInstance.setVarPool(JSONUtls.toJsonStrng(allProperty.values())); } } } prvate vod setVarPoolValue(Map<Strng, Property> allProperty, Map<Strng, TaskInstance> allTaskInstance, TaskInstance preTaskInstance, Property thsProperty) { thsProperty.setDrect(Drect.IN); Strng proName = thsProperty.getProp(); f (allProperty.contansKey(proName)) { Property otherPro = allProperty.get(proName);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
f (StrngUtls.sEmpty(thsProperty.getValue())) { allProperty.put(proName, otherPro); } else f (StrngUtls.sNotEmpty(otherPro.getValue())) { TaskInstance otherTask = allTaskInstance.get(proName); f (otherTask.getEndTme().getTme() > preTaskInstance.getEndTme().getTme()) { allProperty.put(proName, thsProperty); allTaskInstance.put(proName, preTaskInstance); } else { allProperty.put(proName, otherPro); } } else { allProperty.put(proName, thsProperty); allTaskInstance.put(proName, preTaskInstance); } } else { allProperty.put(proName, thsProperty); allTaskInstance.put(proName, preTaskInstance); } } /** * get complete task nstance map, taskCode as key */ prvate Map<Strng, TaskInstance> getCompleteTaskInstanceMap() { Map<Strng, TaskInstance> completeTaskInstanceMap = new HashMap<>(); for (Integer taskInstanceId : completeTaskMap.values()) { TaskInstance taskInstance = taskInstanceMap.get(taskInstanceId); completeTaskInstanceMap.put(Long.toStrng(taskInstance.getTaskCode()), taskInstance); } return completeTaskInstanceMap;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
} /** * get vald task lst */ prvate Lst<TaskInstance> getValdTaskLst() { Lst<TaskInstance> valdTaskInstanceLst = new ArrayLst<>(); for (Integer taskInstanceId : valdTaskMap.values()) { valdTaskInstanceLst.add(taskInstanceMap.get(taskInstanceId)); } return valdTaskInstanceLst; } prvate vod submtPostNode(Strng parentNodeCode) { Set<Strng> submtTaskNodeLst = DagHelper.parsePostNodes(parentNodeCode, skpTaskNodeMap, dag, getCompleteTaskInstanceMap()); Lst<TaskInstance> taskInstances = new ArrayLst<>(); for (Strng taskNode : submtTaskNodeLst) { TaskNode taskNodeObject = dag.getNode(taskNode); f (checkTaskInstanceByCode(taskNodeObject.getCode())) { contnue; } TaskInstance task = createTaskInstance(processInstance, taskNodeObject); taskInstances.add(task); } for (TaskInstance task : taskInstances) { f (readyToSubmtTaskQueue.contans(task)) { contnue; } f (task.getId() > 0 && completeTaskMap.contansKey(task.getTaskCode())) { logger.nfo("task {} has already run success", task.getName()); contnue;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
} f (task.getState().typeIsPause() || task.getState().typeIsCancel()) { logger.nfo("task {} stopped, the state s {}", task.getName(), task.getState()); contnue; } addTaskToStandByLst(task); } submtStandByTask(); updateProcessInstanceState(); } /** * determne whether the dependences of the task node are complete * * @return DependResult */ prvate DependResult sTaskDepsComplete(Strng taskCode) { Collecton<Strng> startNodes = dag.getBegnNode(); f (startNodes.contans(taskCode)) { return DependResult.SUCCESS; } TaskNode taskNode = dag.getNode(taskCode); Lst<Strng> ndrectDepCodeLst = new ArrayLst<>(); setIndrectDepLst(taskCode, ndrectDepCodeLst); for (Strng depsNode : ndrectDepCodeLst) { f (dag.contansNode(depsNode) && !skpTaskNodeMap.contansKey(depsNode)) { Long despNodeTaskCode = Long.parseLong(depsNode); f (!completeTaskMap.contansKey(despNodeTaskCode)) { return DependResult.WAITING;
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
} Integer depsTaskId = completeTaskMap.get(despNodeTaskCode); ExecutonStatus depTaskState = taskInstanceMap.get(depsTaskId).getState(); f (depTaskState.typeIsPause() || depTaskState.typeIsCancel()) { return DependResult.NON_EXEC; } f (taskNode.sCondtonsTask() || taskNode.sBlockngTask()) { contnue; } f (!dependTaskSuccess(depsNode, taskCode)) { return DependResult.FAILED; } } } logger.nfo("taskCode: {} completeDependTaskLst: {}", taskCode, Arrays.toStrng(completeTaskMap.keySet().toArray())); return DependResult.SUCCESS; } /** * Ths functon s specally used to handle the dependency stuaton where the parent node s a prohbted node. * When the parent node s a forbdden node, the dependency relatonshp should contnue to be traced * * @param taskCode taskCode * @param ndrectDepCodeLst All ndrectly dependent nodes */ prvate vod setIndrectDepLst(Strng taskCode, Lst<Strng> ndrectDepCodeLst) { TaskNode taskNode = dag.getNode(taskCode); Lst<Strng> depCodeLst = taskNode.getDepLst(); for (Strng depsNode : depCodeLst) { f (forbddenTaskMap.contansKey(Long.parseLong(depsNode))) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
setIndrectDepLst(depsNode, ndrectDepCodeLst); } else { ndrectDepCodeLst.add(depsNode); } } } /** * depend node s completed, but here need check the condton task branch s the next node */ prvate boolean dependTaskSuccess(Strng dependNodeName, Strng nextNodeName) { f (dag.getNode(dependNodeName).sCondtonsTask()) { Lst<Strng> nextTaskLst = DagHelper.parseCondtonTask(dependNodeName, skpTaskNodeMap, dag, getCompleteTaskInstanceMap()); f (!nextTaskLst.contans(nextNodeName)) { return false; } } else { long taskCode = Long.parseLong(dependNodeName); Integer taskInstanceId = completeTaskMap.get(taskCode); ExecutonStatus depTaskState = taskInstanceMap.get(taskInstanceId).getState(); f (depTaskState.typeIsFalure()) { return false; } } return true; } /** * query task nstance by complete state * * @param state state
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
* @return task nstance lst */ prvate Lst<TaskInstance> getCompleteTaskByState(ExecutonStatus state) { Lst<TaskInstance> resultLst = new ArrayLst<>(); for (Integer taskInstanceId : completeTaskMap.values()) { TaskInstance taskInstance = taskInstanceMap.get(taskInstanceId); f (taskInstance != null && taskInstance.getState() == state) { resultLst.add(taskInstance); } } return resultLst; } /** * where there are ongong tasks * * @param state state * @return ExecutonStatus */ prvate ExecutonStatus runnngState(ExecutonStatus state) { f (state == ExecutonStatus.READY_STOP || state == ExecutonStatus.READY_PAUSE || state == ExecutonStatus.WAITING_THREAD || state == ExecutonStatus.READY_BLOCK || state == ExecutonStatus.DELAY_EXECUTION) { return state; } else { return ExecutonStatus.RUNNING_EXECUTION; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
/** * exsts falure task,contans submt falure、dependency falure,execute falure(retry after) * * @return Boolean whether has faled task */ prvate boolean hasFaledTask() { f (ths.taskFaledSubmt) { return true; } f (ths.errorTaskMap.sze() > 0) { return true; } return ths.dependFaledTaskMap.sze() > 0; } /** * process nstance falure * * @return Boolean whether process nstance faled */ prvate boolean processFaled() { f (hasFaledTask()) { f (processInstance.getFalureStrategy() == FalureStrategy.END) { return true; } f (processInstance.getFalureStrategy() == FalureStrategy.CONTINUE) { return readyToSubmtTaskQueue.sze() == 0 && actveTaskProcessorMaps.sze() == 0 && watToRetryTaskInstanceMap.sze() == 0; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return false; } /** * whether task for watng thread * * @return Boolean whether has watng thread task */ prvate boolean hasWatngThreadTask() { Lst<TaskInstance> watngLst = getCompleteTaskByState(ExecutonStatus.WAITING_THREAD); return CollectonUtls.sNotEmpty(watngLst); } /** * prepare for pause * 1,faled retry task n the preparaton queue , returns to falure drectly * 2,exsts pause task,complement not completed, pendng submsson of tasks, return to suspenson * 3,success * * @return ExecutonStatus */ prvate ExecutonStatus processReadyPause() { f (hasRetryTaskInStandBy()) { return ExecutonStatus.FAILURE; } Lst<TaskInstance> pauseLst = getCompleteTaskByState(ExecutonStatus.PAUSE); f (CollectonUtls.sNotEmpty(pauseLst) || processInstance.sBlocked() || !sComplementEnd() || readyToSubmtTaskQueue.sze() > 0) { return ExecutonStatus.PAUSE; } else {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return ExecutonStatus.SUCCESS; } } /** * prepare for block * f process has tasks stll runnng, pause them * f readyToSubmtTaskQueue s not empty, kll them * else return block status drectly * * @return ExecutonStatus */ prvate ExecutonStatus processReadyBlock() { f (actveTaskProcessorMaps.sze() > 0) { for (ITaskProcessor taskProcessor : actveTaskProcessorMaps.values()) { f (!TASK_TYPE_BLOCKING.equals(taskProcessor.getType())) { taskProcessor.acton(TaskActon.PAUSE); } } } f (readyToSubmtTaskQueue.sze() > 0) { for (Iterator<TaskInstance> ter = readyToSubmtTaskQueue.terator(); ter.hasNext(); ) { ter.next().setState(ExecutonStatus.KILL); } } return ExecutonStatus.BLOCK; } /** * generate the latest process nstance status by the tasks state * * @return process nstance executon status
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
*/ prvate ExecutonStatus getProcessInstanceState(ProcessInstance nstance) { ExecutonStatus state = nstance.getState(); f (actveTaskProcessorMaps.sze() > 0 || hasRetryTaskInStandBy()) { // actve return runnngState(state); } // block f (state == ExecutonStatus.READY_BLOCK) { return processReadyBlock(); } // watng thread f (hasWatngThreadTask()) { return ExecutonStatus.WAITING_THREAD; } // pause f (state == ExecutonStatus.READY_PAUSE) { return processReadyPause(); } // stop f (state == ExecutonStatus.READY_STOP) { Lst<TaskInstance> stopLst = getCompleteTaskByState(ExecutonStatus.STOP); Lst<TaskInstance> kllLst = getCompleteTaskByState(ExecutonStatus.KILL); Lst<TaskInstance> falLst = getCompleteTaskByState(ExecutonStatus.FAILURE); f (CollectonUtls.sNotEmpty(stopLst) || CollectonUtls.sNotEmpty(kllLst) || CollectonUtls.sNotEmpty(falLst) || !sComplementEnd()) { return ExecutonStatus.STOP; } else {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return ExecutonStatus.SUCCESS; } } // process falure f (processFaled()) { return ExecutonStatus.FAILURE; } // success f (state == ExecutonStatus.RUNNING_EXECUTION) { Lst<TaskInstance> kllTasks = getCompleteTaskByState(ExecutonStatus.KILL); f (readyToSubmtTaskQueue.sze() > 0 || watToRetryTaskInstanceMap.sze() > 0) { //tasks cu return ExecutonStatus.RUNNING_EXECUTION; } else f (CollectonUtls.sNotEmpty(kllTasks)) { // tasks m return ExecutonStatus.FAILURE; } else { // f the return ExecutonStatus.SUCCESS; } } return state; } /** * whether complement end * * @return Boolean whether s complement end */ prvate boolean sComplementEnd() { f (!processInstance.sComplementData()) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return true; } try { Map<Strng, Strng> cmdParam = JSONUtls.toMap(processInstance.getCommandParam()); Date endTme = DateUtls.getScheduleDate(cmdParam.get(CMDPARAM_COMPLEMENT_DATA_END_DATE)); return processInstance.getScheduleTme().equals(endTme); } catch (Excepton e) { logger.error("complement end faled ", e); return false; } } /** * updateProcessInstance process nstance state * after each batch of tasks s executed, the status of the process nstance s updated */ prvate vod updateProcessInstanceState() { ExecutonStatus state = getProcessInstanceState(processInstance); f (processInstance.getState() != state) { logger.nfo( "work flow process nstance [d: {}, name:{}], state change from {} to {}, cmd type: {}", processInstance.getId(), processInstance.getName(), processInstance.getState(), state, processInstance.getCommandType()); processInstance.setState(state); f (state.typeIsFnshed()) { processInstance.setEndTme(new Date()); } processServce.updateProcessInstance(processInstance); StateEvent stateEvent = new StateEvent(); stateEvent.setExecutonStatus(processInstance.getState());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
stateEvent.setProcessInstanceId(ths.processInstance.getId()); stateEvent.setType(StateEventType.PROCESS_STATE_CHANGE); ths.processStateChangeHandler(stateEvent); } } /** * stateEvent's executon status as process nstance state */ prvate vod updateProcessInstanceState(StateEvent stateEvent) { ExecutonStatus state = stateEvent.getExecutonStatus(); f (processInstance.getState() != state) { logger.nfo( "work flow process nstance [d: {}, name:{}], state change from {} to {}, cmd type: {}", processInstance.getId(), processInstance.getName(), processInstance.getState(), state, processInstance.getCommandType()); processInstance.setState(state); f (state.typeIsFnshed()) { processInstance.setEndTme(new Date()); } processServce.updateProcessInstance(processInstance); } } /** * get task dependency result * * @param taskInstance task nstance * @return DependResult */ prvate DependResult getDependResultForTask(TaskInstance taskInstance) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return sTaskDepsComplete(Long.toStrng(taskInstance.getTaskCode())); } /** * add task to standby lst * * @param taskInstance task nstance */ prvate vod addTaskToStandByLst(TaskInstance taskInstance) { try { f (readyToSubmtTaskQueue.contans(taskInstance)) { logger.warn("task was found n ready submt queue, task code:{}", taskInstance.getTaskCode()); return; } // need to boolean actve = hadNotFalTask(taskInstance.getTaskCode(), taskInstance.getTaskDefntonVerson()); f (actve) { logger.warn("task was found n actve task lst, task code:{}", taskInstance.getTaskCode()); return; } logger.nfo("add task to stand by lst, task name:{}, task d:{}, task code:{}", taskInstance.getName(), taskInstance.getId(), taskInstance.getTaskCode()); readyToSubmtTaskQueue.put(taskInstance); } catch (Excepton e) { logger.error("add task nstance to readyToSubmtTaskQueue, taskName:{}, task d:{}", taskInstance.getName(), taskInstance.getId(), e); } } /** * remove task from stand by lst * * @param taskInstance task nstance
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
*/ prvate vod removeTaskFromStandbyLst(TaskInstance taskInstance) { logger.nfo("remove task from stand by lst, d: {} name:{}", taskInstance.getId(), taskInstance.getName()); try { readyToSubmtTaskQueue.remove(taskInstance); } catch (Excepton e) { logger.error("remove task nstance from readyToSubmtTaskQueue error, task d:{}, Name: {}", taskInstance.getId(), taskInstance.getName(), e); } } /** * has retry task n standby * * @return Boolean whether has retry task n standby */ prvate boolean hasRetryTaskInStandBy() { for (Iterator<TaskInstance> ter = readyToSubmtTaskQueue.terator(); ter.hasNext(); ) { f (ter.next().getState().typeIsFalure()) { return true; } } return false; } /** * close the on gong tasks */ prvate vod kllAllTasks() {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
logger.nfo("kll called on process nstance d: {}, num: {}", processInstance.getId(), actveTaskProcessorMaps.sze()); f (readyToSubmtTaskQueue.sze() > 0) { readyToSubmtTaskQueue.clear(); } for (long taskCode : actveTaskProcessorMaps.keySet()) { ITaskProcessor taskProcessor = actveTaskProcessorMaps.get(taskCode); Integer taskInstanceId = valdTaskMap.get(taskCode); f (taskInstanceId == null || taskInstanceId.equals(0)) { contnue; } TaskInstance taskInstance = processServce.fndTaskInstanceById(taskInstanceId); f (taskInstance == null || taskInstance.getState().typeIsFnshed()) { contnue; } taskProcessor.acton(TaskActon.STOP); f (taskProcessor.taskInstance().getState().typeIsFnshed()) { StateEvent stateEvent = new StateEvent(); stateEvent.setType(StateEventType.TASK_STATE_CHANGE); stateEvent.setProcessInstanceId(ths.processInstance.getId()); stateEvent.setTaskInstanceId(taskInstance.getId()); stateEvent.setExecutonStatus(taskProcessor.taskInstance().getState()); ths.addStateEvent(stateEvent); } } } publc boolean workFlowFnsh() { return ths.processInstance.getState().typeIsFnshed(); } /**
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
* handlng the lst of tasks to be submtted */ prvate vod submtStandByTask() { try { nt length = readyToSubmtTaskQueue.sze(); for (nt = 0; < length; ++) { TaskInstance task = readyToSubmtTaskQueue.peek(); f (task == null) { contnue; } // stop ta f (task.taskCanRetry()) { TaskInstance retryTask = processServce.fndTaskInstanceById(task.getId()); f (retryTask != null && retryTask.getState().equals(ExecutonStatus.FORCED_SUCCESS)) { task.setState(retryTask.getState()); logger.nfo("task: {} has been forced success, put t nto complete task lst and stop retryng", task.getName()); removeTaskFromStandbyLst(task); completeTaskMap.put(task.getTaskCode(), task.getId()); taskInstanceMap.put(task.getId(), task); submtPostNode(Long.toStrng(task.getTaskCode())); contnue; } } //nt var f (task.sFrstRun()) { //get pre Set<Strng> preTask = dag.getPrevousNodes(Long.toStrng(task.getTaskCode())); getPreVarPool(task, preTask); } DependResult dependResult = getDependResultForTask(task);
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
f (DependResult.SUCCESS == dependResult) { TaskInstance taskInstance = submtTaskExec(task); f (taskInstance == null) { ths.taskFaledSubmt = true; } else { removeTaskFromStandbyLst(task); } } else f (DependResult.FAILED == dependResult) { // f the dependFaledTaskMap.put(task.getTaskCode(), task.getId()); removeTaskFromStandbyLst(task); logger.nfo("task {},d:{} depend result : {}", task.getName(), task.getId(), dependResult); } else f (DependResult.NON_EXEC == dependResult) { // for som removeTaskFromStandbyLst(task); logger.nfo("remove task {},d:{} , because depend result : {}", task.getName(), task.getId(), dependResult); } } } catch (Excepton e) { logger.error("submt standby task error", e); } } /** * get recovery task nstance lst * * @param taskIdArray task d array * @return recovery task nstance lst */ prvate Lst<TaskInstance> getRecoverTaskInstanceLst(Strng[] taskIdArray) { f (taskIdArray == null || taskIdArray.length == 0) {
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
return new ArrayLst<>(); } Lst<Integer> taskIdLst = new ArrayLst<>(taskIdArray.length); for (Strng taskId : taskIdArray) { try { Integer d = Integer.valueOf(taskId); taskIdLst.add(d); } catch (Excepton e) { logger.error("get recovery task nstance faled ", e); } } return processServce.fndTaskInstanceByIdLst(taskIdLst); } /** * get start task nstance lst * * @param cmdParam command param * @return task nstance lst */ prvate Lst<TaskInstance> getStartTaskInstanceLst(Strng cmdParam) { Lst<TaskInstance> nstanceLst = new ArrayLst<>(); Map<Strng, Strng> paramMap = JSONUtls.toMap(cmdParam); f (paramMap != null && paramMap.contansKey(CMD_PARAM_RECOVERY_START_NODE_STRING)) { Strng[] dLst = paramMap.get(CMD_PARAM_RECOVERY_START_NODE_STRING).splt(Constants.COMMA); nstanceLst = getRecoverTaskInstanceLst(dLst); } return nstanceLst; } /** * parse "StartNodeNameLst" from cmd param
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
* * @param cmdParam command param * @return start node name lst */ prvate Lst<Strng> parseStartNodeName(Strng cmdParam) { Lst<Strng> startNodeNameLst = new ArrayLst<>(); Map<Strng, Strng> paramMap = JSONUtls.toMap(cmdParam); f (paramMap == null) { return startNodeNameLst; } f (paramMap.contansKey(CMD_PARAM_START_NODES)) { startNodeNameLst = Arrays.asLst(paramMap.get(CMD_PARAM_START_NODES).splt(Constants.COMMA)); } return startNodeNameLst; } /** * generate start node code lst from parsng command param; * f "StartNodeIdLst" exsts n command param, return StartNodeIdLst * * @return recovery node code lst */ prvate Lst<Strng> getRecoveryNodeCodeLst(Lst<TaskInstance> recoverNodeLst) { Lst<Strng> recoveryNodeCodeLst = new ArrayLst<>(); f (CollectonUtls.sNotEmpty(recoverNodeLst)) { for (TaskInstance task : recoverNodeLst) { recoveryNodeCodeLst.add(Long.toStrng(task.getTaskCode())); } } return recoveryNodeCodeLst; }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
/** * generate flow dag * * @param totalTaskNodeLst total task node lst * @param startNodeNameLst start node name lst * @param recoveryNodeCodeLst recovery node code lst * @param depNodeType depend node type * @return ProcessDag process dag * @throws Excepton excepton */ publc ProcessDag generateFlowDag(Lst<TaskNode> totalTaskNodeLst, Lst<Strng> startNodeNameLst, Lst<Strng> recoveryNodeCodeLst, TaskDependType depNodeType) throws Excepton { return DagHelper.generateFlowDag(totalTaskNodeLst, startNodeNameLst, recoveryNodeCodeLst, depNodeType); } /** * check task queue */ prvate boolean checkTaskQueue() { AtomcBoolean result = new AtomcBoolean(false); taskInstanceMap.forEach((d, taskInstance) -> { f (taskInstance != null && taskInstance.getTaskGroupId() > 0) { result.set(true); } }); return result.get(); } /** * s new process nstance
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java
*/ prvate boolean sNewProcessInstance() { f (ExecutonStatus.RUNNING_EXECUTION == processInstance.getState() && processInstance.getRunTmes() == 1) { return true; } else { return false; } } /** * check f had not fal task by taskCode and verson * * @param taskCode * @param verson * @return */ prvate boolean hadNotFalTask(long taskCode, nt verson) { boolean result = false; for (Entry<Integer, TaskInstance> entry : taskInstanceMap.entrySet()) { TaskInstance taskInstance = entry.getValue(); f (taskInstance.getTaskCode() == taskCode && taskInstance.getTaskDefntonVerson() == verson) { f (!taskInstance.getState().typeIsFalure()) { result = true; break; } } } return result; } }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
/* * 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
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
* limitations under the License. */ package org.apache.dolphinscheduler.service.alert; import org.apache.dolphinscheduler.common.enums.CommandType; import org.apache.dolphinscheduler.common.enums.Flag; import org.apache.dolphinscheduler.common.enums.WarningType; import org.apache.dolphinscheduler.common.utils.JSONUtils; import org.apache.dolphinscheduler.dao.AlertDao; import org.apache.dolphinscheduler.dao.entity.Alert; import org.apache.dolphinscheduler.dao.entity.DqExecuteResult; import org.apache.dolphinscheduler.dao.entity.DqExecuteResultAlertContent; import org.apache.dolphinscheduler.dao.entity.ProcessAlertContent; import org.apache.dolphinscheduler.dao.entity.ProcessDefinition; import org.apache.dolphinscheduler.dao.entity.ProcessInstance; import org.apache.dolphinscheduler.dao.entity.ProjectUser; import org.apache.dolphinscheduler.dao.entity.TaskAlertContent; import org.apache.dolphinscheduler.dao.entity.TaskDefinition; import org.apache.dolphinscheduler.dao.entity.TaskInstance; import org.apache.dolphinscheduler.plugin.task.api.enums.dp.DqTaskState; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; /** * process alert manager */ @Component
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
public class ProcessAlertManager { /** * logger of AlertManager */ private static final Logger logger = LoggerFactory.getLogger(ProcessAlertManager.class); /** * alert dao */ @Autowired private AlertDao alertDao; /** * command type convert chinese * * @param commandType command type * @return command name */ private String getCommandCnName(CommandType commandType) { switch (commandType) { case RECOVER_TOLERANCE_FAULT_PROCESS: return "recover tolerance fault process"; case RECOVER_SUSPENDED_PROCESS: return "recover suspended process"; case START_CURRENT_TASK_PROCESS:
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
return "start current task process"; case START_FAILURE_TASK_PROCESS: return "start failure task process"; case START_PROCESS: return "start process"; case REPEAT_RUNNING: return "repeat running"; case SCHEDULER: return "scheduler"; case COMPLEMENT_DATA: return "complement data"; case PAUSE: return "pause"; case STOP: return "stop"; default: return "unknown type"; } } /** * get process instance content * * @param processInstance process instance * @param taskInstances task instance list * @return process instance format content */ public String getContentProcessInstance(ProcessInstance processInstance, List<TaskInstance> taskInstances, ProjectUser projectUser) { String res = "";
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
if (processInstance.getState().typeIsSuccess()) { List<ProcessAlertContent> successTaskList = new ArrayList<>(1); ProcessAlertContent processAlertContent = ProcessAlertContent.newBuilder() .projectId(projectUser.getProjectId()) .projectName(projectUser.getProjectName()) .owner(projectUser.getUserName()) .processId(processInstance.getId()) .processDefinitionCode(processInstance.getProcessDefinitionCode()) .processName(processInstance.getName()) .processType(processInstance.getCommandType()) .processState(processInstance.getState()) .recovery(processInstance.getRecovery()) .runTimes(processInstance.getRunTimes()) .processStartTime(processInstance.getStartTime()) .processEndTime(processInstance.getEndTime()) .processHost(processInstance.getHost()) .build(); successTaskList.add(processAlertContent); res = JSONUtils.toJsonString(successTaskList); } else if (processInstance.getState().typeIsFailure()) { List<ProcessAlertContent> failedTaskList = new ArrayList<>(); for (TaskInstance task : taskInstances) { if (task.getState().typeIsSuccess()) { continue; } ProcessAlertContent processAlertContent = ProcessAlertContent.newBuilder() .projectId(projectUser.getProjectId()) .projectName(projectUser.getProjectName()) .owner(projectUser.getUserName()) .processId(processInstance.getId())
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
.processDefinitionCode(processInstance.getProcessDefinitionCode()) .processName(processInstance.getName()) .taskCode(task.getTaskCode()) .taskName(task.getName()) .taskType(task.getTaskType()) .taskState(task.getState()) .taskStartTime(task.getStartTime()) .taskEndTime(task.getEndTime()) .taskHost(task.getHost()) .logPath(task.getLogPath()) .build(); failedTaskList.add(processAlertContent); } res = JSONUtils.toJsonString(failedTaskList); } return res; } /** * getting worker fault tolerant content * * @param processInstance process instance * @param toleranceTaskList tolerance task list * @return worker tolerance content */ private String getWorkerToleranceContent(ProcessInstance processInstance, List<TaskInstance> toleranceTaskList) { List<ProcessAlertContent> toleranceTaskInstanceList = new ArrayList<>(); for (TaskInstance taskInstance : toleranceTaskList) { ProcessAlertContent processAlertContent = ProcessAlertContent.newBuilder() .processId(processInstance.getId()) .processDefinitionCode(processInstance.getProcessDefinitionCode())
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
.processName(processInstance.getName()) .taskCode(taskInstance.getTaskCode()) .taskName(taskInstance.getName()) .taskHost(taskInstance.getHost()) .retryTimes(taskInstance.getRetryTimes()) .build(); toleranceTaskInstanceList.add(processAlertContent); } return JSONUtils.toJsonString(toleranceTaskInstanceList); } /** * send worker alert fault tolerance * * @param processInstance process instance * @param toleranceTaskList tolerance task list */ public void sendAlertWorkerToleranceFault(ProcessInstance processInstance, List<TaskInstance> toleranceTaskList) { try { Alert alert = new Alert(); alert.setTitle("worker fault tolerance"); String content = getWorkerToleranceContent(processInstance, toleranceTaskList); alert.setContent(content); alert.setWarningType(WarningType.FAILURE); alert.setCreateTime(new Date()); alert.setAlertGroupId(processInstance.getWarningGroupId() == null ? 1 : processInstance.getWarningGroupId()); alertDao.addAlert(alert); logger.info("add alert to db , alert : {}", alert); } catch (Exception e) { logger.error("send alert failed:{} ", e.getMessage()); }
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
} /** * send process instance alert * * @param processInstance process instance * @param taskInstances task instance list */ public void sendAlertProcessInstance(ProcessInstance processInstance, List<TaskInstance> taskInstances, ProjectUser projectUser) { if (!isNeedToSendWarning(processInstance)) { return; } Alert alert = new Alert(); String cmdName = getCommandCnName(processInstance.getCommandType()); String success = processInstance.getState().typeIsSuccess() ? "success" : "failed"; alert.setTitle(cmdName + " " + success); alert.setWarningType(processInstance.getState().typeIsSuccess() ? WarningType.SUCCESS : WarningType.FAILURE); String content = getContentProcessInstance(processInstance, taskInstances,projectUser); alert.setContent(content); alert.setAlertGroupId(processInstance.getWarningGroupId()); alert.setCreateTime(new Date()); alertDao.addAlert(alert); logger.info("add alert to db , alert: {}", alert); } /** * check if need to be send warning * * @param processInstance * @return
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
*/ public boolean isNeedToSendWarning(ProcessInstance processInstance) { if (Flag.YES == processInstance.getIsSubProcess()) { return false; } boolean sendWarning = false; WarningType warningType = processInstance.getWarningType(); switch (warningType) { case ALL: if (processInstance.getState().typeIsFinished()) { sendWarning = true; } break; case SUCCESS: if (processInstance.getState().typeIsSuccess()) { sendWarning = true; } break; case FAILURE: if (processInstance.getState().typeIsFailure()) { sendWarning = true; } break; default: } return sendWarning; } /** * send process timeout alert *
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
* @param processInstance process instance * @param processDefinition process definition */ public void sendProcessTimeoutAlert(ProcessInstance processInstance, ProcessDefinition processDefinition) { alertDao.sendProcessTimeoutAlert(processInstance, processDefinition); } /** * send data quality task alert */ public void sendDataQualityTaskExecuteResultAlert(DqExecuteResult result, ProcessInstance processInstance) { Alert alert = new Alert(); String state = DqTaskState.of(result.getState()).getDescription(); alert.setTitle("DataQualityResult [" + result.getTaskName() + "] " + state); String content = getDataQualityAlterContent(result); alert.setContent(content); alert.setAlertGroupId(processInstance.getWarningGroupId()); alert.setCreateTime(new Date()); alertDao.addAlert(alert); logger.info("add alert to db , alert: {}", alert); } /** * send data quality task error alert */ public void sendTaskErrorAlert(TaskInstance taskInstance,ProcessInstance processInstance) { Alert alert = new Alert(); alert.setTitle("Task [" + taskInstance.getName() + "] Failure Warning"); String content = getTaskAlterContent(taskInstance); alert.setContent(content); alert.setAlertGroupId(processInstance.getWarningGroupId()); alert.setCreateTime(new Date());
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,243
[Bug] [Alert] Some types of alarms can't display project name
### 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 In some types of alarm contents, the project names cannot be displayed correctly ### What you expected to happen The project name can be displayed normally ### How to reproduce For example, timeout alarm ### Anything else _No response_ ### Version dev ### 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)
https://github.com/apache/dolphinscheduler/issues/9243
https://github.com/apache/dolphinscheduler/pull/9244
03a0c9f54429956cd399de0829aa70c11b67934d
85e56b5e2a083a904bbee4debd459dd8313b84e6
2022-03-28T12:06:05Z
java
2022-03-28T12:45:01Z
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java
alertDao.addAlert(alert); logger.info("add alert to db , alert: {}", alert); } /** * getDataQualityAlterContent * @param result DqExecuteResult * @return String String */ public String getDataQualityAlterContent(DqExecuteResult result) { DqExecuteResultAlertContent content = DqExecuteResultAlertContent.newBuilder() .processDefinitionId(result.getProcessDefinitionId()) .processDefinitionName(result.getProcessDefinitionName()) .processInstanceId(result.getProcessInstanceId()) .processInstanceName(result.getProcessInstanceName()) .taskInstanceId(result.getTaskInstanceId()) .taskName(result.getTaskName()) .ruleType(result.getRuleType()) .ruleName(result.getRuleName()) .statisticsValue(result.getStatisticsValue()) .comparisonValue(result.getComparisonValue()) .checkType(result.getCheckType()) .threshold(result.getThreshold()) .operator(result.getOperator()) .failureStrategy(result.getFailureStrategy()) .userId(result.getUserId()) .userName(result.getUserName()) .state(result.getState()) .errorDataPath(result.getErrorOutputPath()) .build(); return JSONUtils.toJsonString(content);