status
stringclasses 1
value | repo_name
stringlengths 9
24
| repo_url
stringlengths 28
43
| issue_id
int64 1
104k
| updated_files
stringlengths 8
1.76k
| title
stringlengths 4
369
| body
stringlengths 0
254k
⌀ | issue_url
stringlengths 37
56
| pull_url
stringlengths 37
54
| before_fix_sha
stringlengths 40
40
| after_fix_sha
stringlengths 40
40
| report_datetime
timestamp[ns, tz=UTC] | language
stringclasses 5
values | commit_datetime
timestamp[us, tz=UTC] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,632 | ["dolphinscheduler-ui/src/views/projects/workflow/definition/index.module.scss"] | [Bug] [ui] The workflow name witch underline cannot be displayed correctly in the list of workflow definitions page. | ### 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 Project-Workflow-Workflow definitions page, workflow name with underline cannot be displayed correctly. For example: test_1 will show as test 1.

### What you expected to happen
Workflow name can be displayed correctly.
### How to reproduce
Create a workflow name with an underscore.
### 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/10632 | https://github.com/apache/dolphinscheduler/pull/10636 | bbc1e052ab3ce8933b0f1f5f703674e34c0661b1 | d021da4dfbc79a35c81a43cc91c25bcbeb498f1a | 2022-06-27T08:13:22Z | java | 2022-06-28T03:04:18Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,626 | ["dolphinscheduler-registry/dolphinscheduler-registry-api/src/main/java/org/apache/dolphinscheduler/registry/api/Registry.java", "dolphinscheduler-registry/dolphinscheduler-registry-plugins/dolphinscheduler-registry-mysql/src/main/java/org/apache/dolphinscheduler/plugin/registry/mysql/MysqlRegistry.java", "dolphinscheduler-registry/dolphinscheduler-registry-plugins/dolphinscheduler-registry-zookeeper/src/main/java/org/apache/dolphinscheduler/plugin/registry/zookeeper/ZookeeperRegistry.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/registry/RegistryClient.java"] | [Improvment][Registry] getSessionTime() that has not been used in the project in the Registry | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
There is a function getSessionTime() that has not been used in the project in the Registry interface . And now,there are two class(MySqlRegistry and ZookeeperRegistry) that implement this interface. In the ZookeeperRegistry, just returns the value from the config file.

And in the MySqlRegistry,throw new UnsupportedOperationException.

### Use case
I think this function can be deleted
### Related issues
_No response_
### Are you willing to submit a 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/10626 | https://github.com/apache/dolphinscheduler/pull/10633 | 7e7df1d8ffa2955a430b4458c11931bce007427c | 75581b7543cfb2560090d349f9879a3d6fda142c | 2022-06-27T03:03:17Z | java | 2022-06-29T03:20:52Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,622 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ProcessDefinitionServiceTest.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java"] | [Bug] [Api] The name of the workflow or task exceeds the length limit after the workflow is copied multiple times | ### 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
The name of the workflow or task exceeds the length limit after the workflow is copied multiple times
<img width="1134" alt="image" src="https://user-images.githubusercontent.com/13765310/175562154-e99c751e-cfd6-4351-879f-341cc5b71310.png">
### What you expected to happen
The name length of the workflow or task does not exceed the limit
### How to reproduce
Copy a workflow until an error of "batch copy process definition error" is reported
### 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/10622 | https://github.com/apache/dolphinscheduler/pull/10621 | acd3d3fab14d08b3b06015be3ac9cfb2f4bfc934 | c34503e3f6cbfb20f1298a57d52af1990ddaf5aa | 2022-06-26T14:13:27Z | java | 2022-08-04T07:04:14Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,619 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/processor/TaskRecallProcessor.java"] | [Improvement] [Master] MDC Logging causing OutOfMemory with TaskRecallProcessor [TaskRecallProcessor#process(Channel channel, Command command)] | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
In the process method of the TaskRecallProcessor, add WorkflowInstanceId 、TaskInstanceId to MDC Context, but only remove WorkflowInstanceId
`
try {
LoggerUtils.setWorkflowAndTaskInstanceIDMDC(cmd.getProcessInstanceId(),cmd.getTaskInstanceId());
//........
} finally {
LoggerUtils.removeWorkflowInstanceIdMDC();
}
`
### Use case
No response
### Related issues
No response
### Are you willing to submit a 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/10619 | https://github.com/apache/dolphinscheduler/pull/10620 | 16144a8858ab538be797f93abaaef8f291878eff | 628c8ab2a144a4d49d60f02a08e7cdc1672970de | 2022-06-25T17:45:27Z | java | 2022-06-26T02:07:35Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,617 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterSchedulerService.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java"] | [Improvement][Master] Remove the extra check of slot | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
We have a many places to check the slot of master.
This is not needed, since this will not gurantee the command to be executed by only one master.
We already have the database transaction to deal with this case. When we transform the command to processInstance, we will delete the command at one transaction, if the delete failed, the generate of processInstance will also failed.
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10617 | https://github.com/apache/dolphinscheduler/pull/10618 | 5855274b2634b33f7de3862694d36f3df94dd965 | 247ca4ae8a6d6e7a0580a999e04692a69f885144 | 2022-06-25T16:16:55Z | java | 2022-06-30T07:58:49Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,605 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java"] | [Bug] [Api] The copied workflow create time and update time is still copied from the original workflow | ### 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
The copied workflow's create time and update time same to the original workflow
<img width="711" alt="image" src="https://user-images.githubusercontent.com/13765310/175552826-35a319df-b261-40b2-8eea-5fe59d4f7019.png">
### What you expected to happen
copied workflow's create time and update time same should be current time
### How to reproduce
copy the workflow
### 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/10605 | https://github.com/apache/dolphinscheduler/pull/10606 | 35b25da863e38df817bfe3cb2ef758d426b8b699 | 5ebd982e920c9196210fc1e619afb73d81689d2b | 2022-06-24T14:09:03Z | java | 2022-06-28T13:33:58Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,604 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java"] | [Feature][Api] Task name in the copied workflow without copy suffix | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
In most cases, the task name does not need to be changed in copied workflow , task name do not need add copy suffix
### Use case
copied task name without copy suffix
<img width="549" alt="image" src="https://user-images.githubusercontent.com/13765310/175551021-a2f13221-592e-4441-85ff-4042e3d9f7c6.png">
### Related issues
_No response_
### Are you willing to submit a 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/10604 | https://github.com/apache/dolphinscheduler/pull/10607 | c7789bf0499f5893810d93e144250544a528caa4 | 5ebd53893cce180e1af9fa6b067ca6c58d22a5d4 | 2022-06-24T13:57:15Z | java | 2022-07-26T07:21:33Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,596 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/WorkFlowLineageServiceImpl.java"] | [Bug] [Api] Workflow relationship cannot be displayed normally | ### 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
1.Workflow add a dependency node without setting dependency and save
2.View project workflow relationships
3.Unable to present workflow relationship
### What you expected to happen
{"code":10161,"msg":"查询血缘失败","data":null,"failed":true,"success":false}
### How to reproduce
1.Workflow add a dependency node without setting dependency and save
2.View project workflow relationships
### 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/10596 | https://github.com/apache/dolphinscheduler/pull/10625 | a14b96b09143ab52a54683def740295a873bb5ad | 56d3db030640881e8cf5e0c93ce25a540580b08d | 2022-06-24T09:41:36Z | java | 2022-06-27T09:26:41Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,595 | ["dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.xml", "dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/mapper/ProjectMapperTest.java"] | [Bug] [Api] Dependent Node Only View Projects Created By Self | ### 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
Only display project code.
### What you expected to happen
correct it.
### How to reproduce
None
### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10595 | https://github.com/apache/dolphinscheduler/pull/10834 | 89780e296d7dc3e9fe510e3b9d3e8addc17acdd9 | 4ff8eaa996fab2593ca77df436727ec7a4d6e596 | 2022-06-24T08:59:42Z | java | 2022-07-14T11:03:34Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,594 | ["dolphinscheduler-ui/src/views/data-quality/task-result/use-table.ts"] | [Feature] [UI] Data Quality Result Display Optimize | ### 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
Such as State, Alert Type and so on.
### What you expected to happen
UI optimize
### How to reproduce
None
### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10594 | https://github.com/apache/dolphinscheduler/pull/10835 | 41698011b344f167447d64c001a04e8b1bab9a6d | 4d07efd3f27288ace85081f61a00dbdbbad9ae1b | 2022-06-24T08:56:09Z | java | 2022-07-08T02:38:07Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,589 | ["docs/configs/docsdev.js", "docs/docs/en/guide/healthcheck.md", "docs/docs/zh/guide/healthcheck.md"] | [Feature][Doc] Add doc about how to use healthcheck endpoints | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
Add doc about how to use healthcheck endpoints
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10589 | https://github.com/apache/dolphinscheduler/pull/10592 | 397e51fa63b39bc2ec2d68091c5b613aad7fa4ac | 33cc68ed4a4d6cae7883c637e37e6eafb7c2b5e1 | 2022-06-24T03:47:57Z | java | 2022-06-24T08:56:26Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,584 | ["docs/docs/en/guide/task/zeppelin.md", "docs/docs/zh/guide/task/zeppelin.md", "dolphinscheduler-task-plugin/dolphinscheduler-task-zeppelin/src/main/java/org/apache/dolphinscheduler/plugin/task/zeppelin/ZeppelinParameters.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-zeppelin/src/main/java/org/apache/dolphinscheduler/plugin/task/zeppelin/ZeppelinTask.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-zeppelin/src/test/java/org/apache/dolphinscheduler/plugin/task/zeppelin/ZeppelinTaskTest.java", "dolphinscheduler-ui/src/locales/en_US/project.ts", "dolphinscheduler-ui/src/locales/zh_CN/project.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-zeppelin.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/format-data.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/types.ts"] | [Feature][Task Plugin] Zeppelin Task will run a duplicate note instead of the original one | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
* At present, zeppelin task plugin runs the zeppelin notes / paragraphs directly. If users modify the notes / paragraphs during scheduling, it may lead to inconsistent result.
* Zeppelin task plugin should duplicate the target notes / paragraphs and run the duplicates instead of the origins. When done, zeppelin task plugin is supposed to delete the duplicates.
### Use case
* Already described above.
### Related issues
related: #9814
### Are you willing to submit a 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/10584 | https://github.com/apache/dolphinscheduler/pull/11010 | 35f32cd16eb7d89a900863755506858e84c699dd | f689220290a13d5ce3b451e65a475c0444e7a047 | 2022-06-23T23:54:29Z | java | 2022-07-20T06:16:47Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,579 | ["dolphinscheduler-ui/src/views/projects/workflow/definition/components/start-modal.tsx", "dolphinscheduler-ui/src/views/projects/workflow/definition/components/use-form.ts"] | [Bug] [Dependent] Use dependent not rerun when upstream rerun | ### 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
Dependent not rerun when upstream rerun.
### What you expected to happen
downstream workflow can rerun.
### How to reproduce
create dependent and rerun upstream task.
### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10579 | https://github.com/apache/dolphinscheduler/pull/10580 | 7a292cfccf796384ecd4b7d7bcd221a8e827aab9 | 393cb648f9c900c43fe8b4273100ae04622e4f02 | 2022-06-23T10:27:27Z | java | 2022-06-23T12:49:28Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,576 | ["script/dolphinscheduler-daemon.sh"] | [Bug] [Standalone] start standalone error using ./bin/dolphinscheduler-daemon.sh start standalone-server | ### 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
start standalone error using ./bin/dolphinscheduler-daemon.sh start standalone-server
### What you expected to happen
start successfully.
### How to reproduce
above.
### 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/10576 | https://github.com/apache/dolphinscheduler/pull/10577 | 0f38217b12e44c1186f2f6e7dc38e8685b486756 | 7a292cfccf796384ecd4b7d7bcd221a8e827aab9 | 2022-06-23T07:45:50Z | java | 2022-06-23T08:35:39Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,575 | ["dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/resources/application.yaml", "dolphinscheduler-api/src/main/resources/application.yaml", "dolphinscheduler-master/src/main/resources/application.yaml", "dolphinscheduler-standalone-server/src/main/resources/application.yaml", "dolphinscheduler-worker/src/main/resources/application.yaml"] | [Feature][Healthcheck] Add datasource health check to the healthcheck endpoint | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
Add datasource health check to the healthcheck endpoint
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10575 | https://github.com/apache/dolphinscheduler/pull/10588 | 797057336529d3077c42ec689416c08c2e8d14cf | 1111371c9ab30420c2effa03e6f94a6d268a4e1f | 2022-06-23T06:59:51Z | java | 2022-06-24T05:29:49Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,571 | ["docs/docs/en/architecture/configuration.md", "docs/docs/zh/architecture/configuration.md"] | [Bug] [Doc] Configuration doc is quite outdated and needs update | ### 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
* Configuration doc is quite outdated and needs update.
* https://dolphinscheduler.apache.org/zh-cn/docs/latest/user_doc/architecture/configuration.html
### What you expected to happen
* Already described above.
### How to reproduce
* Already described above.
### 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/10571 | https://github.com/apache/dolphinscheduler/pull/11113 | dc3ab6af11db0d11e3349e5c097d5f20ea483b47 | 39186b1a6d04d7e6ad8e47d61935acca40c2b438 | 2022-06-23T06:16:41Z | java | 2022-08-04T03:55:05Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,556 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TaskGroupServiceImpl.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/TaskGroupMapper.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskGroupMapper.xml"] | [Feature][TaskGroup] TaskGroup should remove query func permission check. | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
TaskGroup should remove query func permission check.
### Use case
TaskGroup
### Related issues
No
### Are you willing to submit a 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/10556 | https://github.com/apache/dolphinscheduler/pull/10557 | 0aba68f335a9c582424a8e605b94e29deb6649de | bc4ceda4cf864d068583879ae8f35afdaaefeccb | 2022-06-22T22:39:09Z | java | 2022-06-23T02:00:31Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,548 | ["docs/docs/en/guide/project/workflow-definition.md", "docs/docs/zh/guide/project/workflow-definition.md"] | [Feature] Dependent logic need optimize | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
When a dependent task is used, the downstream can be automatically executed when the dependent task is rerouted or executed.
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10548 | https://github.com/apache/dolphinscheduler/pull/10587 | 0b377f72b1c5e84a18986fd9008c83987ed87295 | b21e211d2cbf7a2af2307f0a5c63dc9c2b837809 | 2022-06-22T09:20:07Z | java | 2022-06-24T08:33:10Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,547 | ["dolphinscheduler-data-quality/src/main/java/org/apache/dolphinscheduler/data/quality/execution/SparkRuntimeEnvironment.java"] | [Bug] [data-quality] Table or view not found | ### 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 use the data quality module to check the hive table data(hive table:`test`.`t_view_log`), an error is reported when running the task. The error content is:
org.apache.spark.sql.AnalysisException: Table or view not found:`test`.`t_view_log`;line 1 pos 14;
<img width="1627" alt="exception" src="https://user-images.githubusercontent.com/19662221/174990552-3df7b6c9-2d79-435a-8eab-80ae98732aee.png">
### What you expected to happen
Because I have installed spark2.4.0 and hive3.1.2, started the hive Metastore service, and set hive-site.xml is placed in the conf directory of spark。
### How to reproduce
installed spark2.4.0 and hive3.1.2, started the hive Metastore service, and set hive-site.xml is placed in the conf directory of spark。Then create a new data quality task to check the hive table data。
### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10547 | https://github.com/apache/dolphinscheduler/pull/10549 | 773ebc9e523d1190dcc31ce63878071d3d2847c1 | 08e2c245a86e93abd1fcd401ac08a92ba861d523 | 2022-06-22T09:04:32Z | java | 2022-06-23T06:17:45Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,543 | ["dolphinscheduler-ui/src/common/common.ts"] | [Bug] [ui] bytesToSize | ### 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
bytesToSize(1) // 1 B
bytesToSize(1000) // 1 B ???
### What you expected to happen
bytesToSize(1000)
1000 B
### How to reproduce
bytesToSize(1000)
### 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/10543 | https://github.com/apache/dolphinscheduler/pull/10627 | cd51a2294098e91f5f5d3a9c9fb7fc9e488d12aa | a6fc70cdd111a52a1342ff78953f5c3948e8add1 | 2022-06-22T06:07:53Z | java | 2022-06-27T05:55:37Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,539 | ["dolphinscheduler-ui/src/views/projects/workflow/components/dag/use-task-edit.ts"] | Copy task a to B, change the user-defined parameters of Task B, and change the parameters of task a | ### 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
现有节点A:

复制节点B:


更改自定义参数项并确认添加:

导致节点A的参数项也更改了:

### What you expected to happen
Front end parameter transfer error
### How to reproduce
Replication tasks can be reproduced
### Anything else
_No response_
### Version
2.0.5
### Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
| https://github.com/apache/dolphinscheduler/issues/10539 | https://github.com/apache/dolphinscheduler/pull/10611 | dafed572d17cd08dae1c1decf389f0dd4241fdf7 | b8de9ee7520dae4b9a9d555a4aa898c43613e6fd | 2022-06-22T02:39:40Z | java | 2022-06-27T02:53:13Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,522 | ["dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/corn/CronUtils.java"] | [Bug] [API] Get executable time null pointer exception | ### 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
Get executable time null pointer exception
cron: `0 0 4 7 7 ? 2022`
```
java.lang.NullPointerException
at org.apache.dolphinscheduler.service.quartz.cron.CronUtils.getSelfFireDateList(CronUtils.java:175)
at org.apache.dolphinscheduler.service.quartz.cron.CronUtils.getSelfFireDateList(CronUtils.java:228)
at org.apache.dolphinscheduler.service.quartz.cron.CronUtilsTest.getExpirationTime1(CronUtilsTest.java:234)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:69)
at com.intellij.rt.junit.IdeaTestRunner$Repeater$1.execute(IdeaTestRunner.java:38)
at com.intellij.rt.execution.junit.TestsRepeater.repeat(TestsRepeater.java:11)
at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:35)
at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:235)
at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:54)
```
### What you expected to happen
fix NullPointerException
### How to reproduce
Set timing `0 0 4 7 7 ? 2022`, get execution time

### 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/10522 | https://github.com/apache/dolphinscheduler/pull/10523 | bf077cb38f34a7ea427caca0e7125e9128ec4795 | cefcb6d5562e899db7508970bd5fdc7f72c3e23f | 2022-06-21T04:50:09Z | java | 2022-06-22T00:58:19Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,514 | ["dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/resources/logback-spring.xml", "dolphinscheduler-api/src/main/resources/logback-spring.xml", "dolphinscheduler-master/src/main/resources/logback-spring.xml", "dolphinscheduler-worker/src/main/resources/logback-spring.xml"] | [Bug] [Master] The master frequently print the same info or error logs, leads to insufficient disk space | ### 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
1.The master frequently print the error logs,when the postgres hangs up. The master generate 100G log per hour.

2.The master frequently print the info logs, when the task was stuck. The master generate 100G log per hour.


### What you expected to happen
The log print normally, not so frequently.
### How to reproduce
There is two disk, disk A and disk B, postgres and zk is deployed on the A disk, and the dolphinscheduler on B disk.
Then the disk A is full and cause the postgres and zk to hang up, the dolphinscheduler master program run out of the B disk space In a short time by print this error Info frequently, like this.

There is another case,when there are some tasks stuck and can't stop, the info log run out of the disk space In a short time.
I set the log level to WARN level to resolve the problem temporarily.

### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10514 | https://github.com/apache/dolphinscheduler/pull/10568 | 08e2c245a86e93abd1fcd401ac08a92ba861d523 | 0f38217b12e44c1186f2f6e7dc38e8685b486756 | 2022-06-20T08:58:46Z | java | 2022-06-23T08:15:08Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,513 | ["docs/docs/en/guide/installation/pseudo-cluster.md", "docs/docs/zh/guide/installation/pseudo-cluster.md"] | [Bug] [pseudo-cluster installation] Cannot load driver class: com.mysql.cj.jdbc.Driver | ### 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
I followed the instruction strictly to perform a pseudo-cluster installation, and I added a `mysql-connector-java-8.0.16.jar` into the `tools/libs` directory and change the owner also.
However, I found that the installation program didn't dispatch the mysql-connector to all servers, and I try to add jar to each server manally, it worked.
Snapshots are attached below, thanks.
### mysql-connector

### configuration

### logs

### master-server libs

### What you expected to happen
I think the installation program should dispatch the mysql-connector file to all the servers needed, but it didn't work.
### How to reproduce
As I described above.
### Anything else
Nil
### Version
3.0.0-beta-1
### 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/10513 | https://github.com/apache/dolphinscheduler/pull/10564 | 1b1a567fec8bc0c5027b2f8ea11bc57a85101ced | 773ebc9e523d1190dcc31ce63878071d3d2847c1 | 2022-06-20T08:45:01Z | java | 2022-06-23T05:44:22Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,507 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/security/SecurityConfig.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/security/impl/AbstractAuthenticator.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/LoginControllerTest.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java"] | [Improvement][LDAP] Hide Change Pwd Page When Login With LDAP | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
Hi, guys. Recently, We have tried to enable LDAP on DS and found some questions that can improve.
When you log in with LDAP. And there are still change password pages. But LDAP users have no password config. I think hiding this page when you log in with LDAP is better.
I have finished the back-end part. When login will return `securityConfigType`, and now need front part support.
### Use case
When login and return `securityConfigType` at `dolphinscheduler/login` api
```
{
"code": 0,
"msg": "login success",
"data": {
"sessionId": "f4d710b7-bbae-4078-a574-de6358969615",
"securityConfigType": "PASSWORD"
},
"success": true,
"failed": false
}
```
Hide this btn when `securityConfigType` is `LDAP`
<img width="389" alt="WeChatf7516bac11afebca0372e516cda659d8" src="https://user-images.githubusercontent.com/20885366/174530891-2109011a-7fcf-4adb-9938-deb2c2e60d64.png">
### Related issues
back-end part is #10502
front-end part is #11029
part of #10425
### Are you willing to submit a 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/10507 | https://github.com/apache/dolphinscheduler/pull/11041 | fd59f0bb326899f7298a33b01e271070ceba112c | 28b40da1b134fb54296ef9d1a8b13268f289fbf0 | 2022-06-20T05:29:37Z | java | 2022-07-20T10:48:16Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,490 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-delay-time.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-failed.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-flink.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-k8s.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sqoop.ts"] | [Bug] [dolphinscheduler-ui]Current node settings number of failed retries may not be negative | ### 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 creating workflow, Current node settings
number of failed retries, failed retry interval, delay execution time may not be negative
### What you expected to happen
When creating workflow, Current node settings
number of failed retries, failed retry interval, delay execution time may not be negative

### How to reproduce
When creating workflow, Current node settings
number of failed retries, failed retry interval, delay execution time may not be negative
### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10490 | https://github.com/apache/dolphinscheduler/pull/10530 | 9345c16f3f1e5232041cd65ddee40e84602d1a62 | 198e00db5819f55c9db3a4e1af542a3bf53b47c8 | 2022-06-17T07:23:31Z | java | 2022-06-22T10:22:33Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,488 | [".github/workflows/py-ci.yml"] | [Bug] [python] integrate test run strategy change | ### 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
https://github.com/apache/dolphinscheduler/pull/10468#discussion_r899801771 some service or mapper change will failed python api and it will not trigger the python integrate test, we have to change the strategy CI of python api run
### What you expected to happen
ATT
### How to reproduce
ATT
### Anything else
ATT
### 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/10488 | https://github.com/apache/dolphinscheduler/pull/10825 | 8eaf5a230998946001b80c9f373da844e6efcd21 | 598290487c837478cd2afe630cb2f25521e9d5ee | 2022-06-17T06:32:54Z | java | 2022-07-10T03:06:27Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,486 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/python/PythonGateway.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/python/PythonGatewayTest.java", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/constants.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/core/process_definition.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/core/task.py", "dolphinscheduler-python/pydolphinscheduler/tests/core/test_task.py"] | [Feature][Python] Python-gate should support the use of full-name definitions for resources. | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
Now when I define a Python task that requires importing resources.
I need to check the id of the resource in the database first.
And then I write code that looks something like this.
```
test_task = Python(
name="测试任务",
resource_list=[{"id": 64}, {"id": 65}, {"id": 66}, {"id": 67}, {"id": 68}],
code=base_info_py_code
)
```
resource_list should be allowed to be defined using the resource full-name .
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10486 | https://github.com/apache/dolphinscheduler/pull/10551 | 393cb648f9c900c43fe8b4273100ae04622e4f02 | 797057336529d3077c42ec689416c08c2e8d14cf | 2022-06-17T05:23:35Z | java | 2022-06-23T14:59:59Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,476 | ["dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/utils/DagHelper.java"] | [Bug] [Master] workflow instance never stop because conditional task has no downstream task | ### 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
If condition have no downstream task, master will npe during workflow run.And workflow never stop.
<img width="926" alt="image" src="https://user-images.githubusercontent.com/37766284/174033206-bc173d76-3e3d-4dfd-af4f-7864bc0fb43b.png">
<img width="1342" alt="image" src="https://user-images.githubusercontent.com/37766284/174033345-3cb9bbbe-7f9f-4f8a-9529-2bab659f606a.png">
### What you expected to happen
The workflow instance completed.
### How to reproduce
<img width="637" alt="image" src="https://user-images.githubusercontent.com/37766284/174033843-f0ffbb23-a79b-4bef-8f93-ec4ad8f18d5f.png">
<img width="589" alt="image" src="https://user-images.githubusercontent.com/37766284/174034147-0092f7a8-d1bd-481d-9fc9-e16c7247bc36.png">
1.create a condition task that have no downstream task.
2.run workflow.
### Anything else
etc.
### 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/10476 | https://github.com/apache/dolphinscheduler/pull/10478 | 062146eecd9ceabbd6d1fd32747372802749d6bd | 0dd6f4008e146097026626c6e1dd47820cdec6bd | 2022-06-16T09:01:27Z | java | 2022-06-17T05:40:11Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,469 | ["dolphinscheduler-ui/src/views/resource/file/rename/index.tsx"] | [Bug] [UI] Rename form init bug in file manage | ### 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
- Rename form not init after edit description
<img width="1176" alt="image" src="https://user-images.githubusercontent.com/8847400/173984259-97c2d07d-debd-4617-9fdd-4a1fc9b830e3.png">
### What you expected to happen
Form normal initialization
### How to reproduce
above
### 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/10469 | https://github.com/apache/dolphinscheduler/pull/10471 | f512e3c31f4850c7272e868b291193a58c661d57 | d1cae6025b7a8c6427120ecfeb8a2c8b1e4bbb72 | 2022-06-16T03:27:51Z | java | 2022-06-16T05:51:17Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,463 | ["dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/sql.py", "dolphinscheduler-python/pydolphinscheduler/tests/tasks/test_sql.py"] | [Bug] [Python] When SQL type tasks are uploaded through Python Gate, the web page displays an error. | ### 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 SQL type tasks are uploaded through Python Gate, the web page displays an error.

### What you expected to happen

### How to reproduce
When SQL type tasks are uploaded through Python Gate
### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10463 | https://github.com/apache/dolphinscheduler/pull/10464 | 720a10a21e0dba54e08a5d7958eae5f8ca084d0d | f512e3c31f4850c7272e868b291193a58c661d57 | 2022-06-15T11:00:41Z | java | 2022-06-16T01:39:53Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,452 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteRunnable.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThreadPool.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/SubTaskProcessor.java", "dolphinscheduler-remote/src/main/java/org/apache/dolphinscheduler/remote/processor/StateEventCallbackService.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java"] | [Feature] Serial wait for policy recovery. | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
Serial wait for policy recovery.
### Use case
Serial wait for policy recovery.
### Related issues
No
### Are you willing to submit a 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/10452 | https://github.com/apache/dolphinscheduler/pull/10453 | 6396fa996563622a5ded29cbcae42d91db24d611 | f46faa02c39b6c31c345fdc75218b3fc15f64ae3 | 2022-06-15T07:04:51Z | java | 2022-06-22T06:28:50Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,449 | ["dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql", "dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgresql.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.0.0_schema/mysql/dolphinscheduler_ddl.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.0.0_schema/postgresql/dolphinscheduler_ddl.sql"] | [Bug] [dao] Scheduling a large number of tasks . Metadata database resource consumption is high | ### 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
使用dolphinscheduler每天调度10万级工作流,上百万任务量时,使用mysql作为元数据库,mysql压力过大
如下图,开始mysql配置为2核4g,cpu占用非常多峰刺。
然后升级mysql为8核16g,很快cpu使用率就达到100%

### What you expected to happen
经过问题排查发现t_ds_task_instance,t_ds_process_instance,t_ds_relation_process_instance这三张表数据量过大,并且没有配置入口去删除数据。
而mysql cpu使用过高的的原因主要是大量相同语句查询t_ds_relation_process_instance表,查询语句如下:
select id, parent_process_instance_id, parent_task_instance_id, process_instance_id from t_ds_relation_process_instance where parent_process_instance_id = 667735 and parent_task_instance_id = 2454593;
这个表没有创建合适的索引,导致每次查询会扫描全表。
所以可以对此表增加索引,可以很大程度缓解mysql压力。

### How to reproduce
工作流、任务并行度为默认值,元数据库为mysql
每小时调度数百个工作流,每个工作流有数十个任务
执行一段时间会把mysql cpu占满
### Anything else
_No response_
### Version
2.0.5
### 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/10449 | https://github.com/apache/dolphinscheduler/pull/10461 | d1cae6025b7a8c6427120ecfeb8a2c8b1e4bbb72 | 7aa9fa496503423235414ec12be1794dd1cf3808 | 2022-06-15T04:05:28Z | java | 2022-06-16T07:24:05Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,436 | ["dolphinscheduler-ui/src/views/datasource/list/detail.tsx", "dolphinscheduler-ui/src/views/datasource/list/use-form.ts"] | [Bug] [DataSource] edit an exist hive datasource connection, don't show principal and keytab | ### 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 create hive datasource connection, have principal and keytab input item,but if we edit the hive datasource connection, it can't show pirncipal and keytab. One more thing, if we click create hive datasource first, then click edit exist hive datasource, it will show principal.


### What you expected to happen
it can show principal and keytab when edit hive datasource connection.
### How to reproduce
1、create an hive datasource connection(if you have one, skip this)
2、click other like Home tabs, then click datasource tabs again
3、edit the hive datasource connection created in step 1.
4、you will find it don't show principal and keytab
### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10436 | https://github.com/apache/dolphinscheduler/pull/10876 | 1edbb5e333eb91bc04002d7f15b15c8511fd7eed | 56fe11ecf9e50bdd984920a065b8ba0680e741f1 | 2022-06-14T01:21:26Z | java | 2022-07-12T01:18:10Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,431 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/python/PythonGateway.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/TaskDefinitionService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TaskDefinitionServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/python/PythonGatewayTest.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/TaskDefinitionServiceImplTest.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/TaskDefinitionMapper.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskDefinitionMapper.xml", "dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/mapper/TaskDefinitionMapperTest.java", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/core/task.py"] | [Bug] [Python] Python-gate can't support setting the same task name in the same project for different process | ### 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 set tasks with the same name in different process of the same project through python-gate.
The system treats these two tasks as one.
Instead of inserting a new piece of data to table t_ds_task_definition, the system adds one to the original version of the data.
Although the correct task was found in the t_ds_task_definition_log table by version when the task was executed, this still has implications.
So when a task is created, it should be treated as a new task.
### What you expected to happen
When I set tasks with the same name in different process of the same project through python-gate,it should be treated as a new task.
### How to reproduce
Set tasks with the same name in different process of the same project through python-gate
### Anything else
_No response_
### Version
2.0.3
### 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/10431 | https://github.com/apache/dolphinscheduler/pull/10428 | 190f253083e2b1d50f235b07c53fbbe6b66c1aa2 | b86dc53ad10cb5c4d76f5e85c38e5a5659a349fd | 2022-06-13T09:35:00Z | java | 2022-06-14T05:53:18Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,419 | ["deploy/kubernetes/dolphinscheduler/Chart.yaml"] | [Bug] [K8S] helm update dependency error | ### 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
helm update dependency error
### What you expected to happen
helm update dependencies successfully
### How to reproduce
1. cd dolphinscheduler/deploy/kubernetes/dolphinscheduler
2. helm helm repo add bitnami https://charts.bitnami.com/bitnami
3. helm dependency update .
### Anything else
<img width="883" alt="image" src="https://user-images.githubusercontent.com/42627702/173240679-ed0d695f-ef3e-45d6-925e-1b8081e4c383.png">
<img width="1072" alt="image" src="https://user-images.githubusercontent.com/42627702/173241236-d93933de-a48c-4d09-9469-4469218a4a94.png">
### 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/10419 | https://github.com/apache/dolphinscheduler/pull/10420 | f0131d5b7a1e7d0bccc416f7ad6aa00334ca874b | a7e20798cbef28ca9d5d2a1a5fc4e5436a8a4c6d | 2022-06-12T15:37:42Z | java | 2022-06-13T02:27:34Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,415 | [".github/actions/sanity-check/action.yml", ".github/workflows/backend.yml"] | [Bug] [checkstyle] some checkstyle not work correctly | ### 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
Some checkstyle not work correctly, such as
* `import *` can be pass the checksytle
* multiple identify statement can without `,`, eg `int intVar,String strVar` should be `int intVar,String strVar`
### What you expected to happen
ATT
### How to reproduce
Change code and submit a new PR, it will pass checkstyle
### 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/10415 | https://github.com/apache/dolphinscheduler/pull/10812 | 71f016851093c18376e3bb301bf6e41dee215706 | 8320490da392d2d9d1f58760554e69b2b88136ea | 2022-06-12T04:12:13Z | java | 2022-07-06T13:31:32Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,413 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/storage/StorageOperate.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/thread/BaseDaemonThread.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/consumer/TaskPriorityQueueConsumer.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/processor/queue/StateEventResponseService.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/processor/queue/TaskEventService.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/EventExecuteService.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/FailoverExecuteThread.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterSchedulerService.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/StateWheelExecuteThread.java"] | [Bug] [Master] If an exception occurs during startup, the log will be flushed in an infinite loop | ### 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
If an exception occurs during startup, the log will be flushed in an infinite loop, Hundreds of megabytes of logs are generated instantly


### What you expected to happen
Start abnormal interrupt procedures, easy to troubleshoot problems
### How to reproduce
An exception is thrown when the load bean is started
### 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/10413 | https://github.com/apache/dolphinscheduler/pull/10500 | 6e4b2e69927af70bccda5a2e70fe93d7b1a852e7 | 117f78ec4b0e2438082a3e25158492eca1b9b1be | 2022-06-12T01:56:07Z | java | 2022-06-20T14:35:06Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,412 | ["dolphinscheduler-standalone-server/src/main/bin/start.sh", "dolphinscheduler-standalone-server/src/main/dist-bin/start.sh", "dolphinscheduler-standalone-server/src/main/resources/application.yaml"] | [Bug] [Standalone] Failed to start standalone server according to the official document | ### 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
```https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/installation/standalone.html```
### What you expected to happen
start successfully.
### How to reproduce
above.
### 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/10412 | https://github.com/apache/dolphinscheduler/pull/10414 | f6fea06f1051f5962106e6299eea9696bddf12d4 | f4dad689d493dcd0d64026c6df3350ca0f9ba805 | 2022-06-12T01:52:33Z | java | 2022-06-12T08:16:57Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,409 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/permission/ResourcePermissionCheckService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/permission/ResourcePermissionCheckServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ResourcesServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/UdfFuncServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ResourcesServiceTest.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/UdfFuncServiceTest.java"] | [Bug] [Permission] No permission to modify the allocated resource data. | ### 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
No permission to modify the allocated resource data.
### What you expected to happen
Update success.
### How to reproduce
Allocate resource data and then modify it.
### 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/10409 | https://github.com/apache/dolphinscheduler/pull/10410 | f4dad689d493dcd0d64026c6df3350ca0f9ba805 | c843e3a31550c5a23c7e68624dfaa59bdd7957f8 | 2022-06-11T08:30:01Z | java | 2022-06-12T10:27:49Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,403 | ["dolphinscheduler-spi/src/main/java/org/apache/dolphinscheduler/spi/utils/JSONUtils.java", "dolphinscheduler-spi/src/test/java/org/apache/dolphinscheduler/spi/utils/JSONUtilsTest.java"] | [Bug] [dolphinscheduler-spi] JSONUtils parse LocalDateTime error | ### 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 try to set Custom Parameters of SQL Task Node with OUT type, I get such error msg:
```
[ERROR] 2022-06-10 09:32:40.206 +0000 org.apache.dolphinscheduler.spi.utils.JSONUtils:[215] - json to map exception!
com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance of `java.lang.String` out of START_OBJECT token
at [Source: (String)"{"id":1,"code":5791423019648,"name":"cat","version":1,"description":"","project_code":5791415412992,"release_state":1,"user_id":1,"global_params":"[]","flag":1,"locations":"[{\"taskCode\":5791416706432,\"x\":-5.5,\"y\":147.5}]","warning_group_id":null,"timeout":0,"tenant_id":-1,"execution_type":0,"create_time":{},"update_time":{}}"; line: 1, column: 313] (through reference chain: java.util.LinkedHashMap["create_time"])
at com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:59)
at com.fasterxml.jackson.databind.DeserializationContext.reportInputMismatch(DeserializationContext.java:1445)
at com.fasterxml.jackson.databind.DeserializationContext.handleUnexpectedToken(DeserializationContext.java:1219)
at com.fasterxml.jackson.databind.DeserializationContext.handleUnexpectedToken(DeserializationContext.java:1129)
```
In msg, `create_time` had wrong value `{}`. Thought debug, I found sql task Convert datatime to LocalDateTime. And then, JSONUtils parse this LocalDateTime object to `{}`.
I write test case, this situation is reproduced:
```
@Test
public void localDateTimeToString() {
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Shanghai"));
String time = "2022-02-22 13:38:24";
Date date = DateUtils.stringToDate(time);
LocalDateTime localDateTime = LocalDateTime.ofInstant(date.toInstant(), ZoneId.systemDefault());
String json = JSONUtils.toJsonString(localDateTime);
// console print: {}
System.out.println(json);
Assert.assertEquals(json, "\"" + time + "\"");
}
```
### What you expected to happen
JSONUtils parse LocalDateTime object to correct value.
### How to reproduce
Run the above test case.
### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10403 | https://github.com/apache/dolphinscheduler/pull/10440 | 719a9d4532733c0d7b4a54ed52b15dca7982ca8d | dafed572d17cd08dae1c1decf389f0dd4241fdf7 | 2022-06-10T10:38:07Z | java | 2022-06-27T02:19:28Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,400 | ["deploy/kubernetes/dolphinscheduler/Chart.yaml", "deploy/kubernetes/dolphinscheduler/templates/_helpers.tpl"] | Deploy kubernetes according to the official website document, failed! | ### 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 the official documents of 2.0.5 and 3.0.0-beta-1, there are problems in the deployment of kubernetes. The deployment cannot succeed according to the instructions in the documents.
Encountered the following problems:
1) Execute "helm dependency update." "Error: can't get a valid version for repositories PostgreSQL, zookeeper. try changing the version constraint in chart.yaml". Set chart In yaml, the PostgreSQL version is changed to 11.0.0, and the zookeeper version is changed to 9.0.0. This step can be successful.
2) After "helm install dolphin scheduler. --set image.tag=2.0.5" is executed, the status of pod is createcontainerconfigerror, and the error message of pod is: "error: could't find key PostgreSQL password in secret default/dolphin scheduler PostgreSQL". Check the secret. There is PostgreSQL password in the secret.
### What you expected to happen
I hope the application can be successfully deployed according to the official website documents, but there are many problems.
### How to reproduce
Just follow the official website documents to reproduce the problem.
### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10400 | https://github.com/apache/dolphinscheduler/pull/10567 | 15a86071d14c83b6a40557ea49ea39ac46cd9057 | 0b377f72b1c5e84a18986fd9008c83987ed87295 | 2022-06-10T06:30:42Z | java | 2022-06-24T07:29:26Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,395 | ["dolphinscheduler-meter/src/main/resources/grafana-demo/prometheus.yml"] | [Feature][Metrics] Enable prometheus to collect metrics in standalone mode demo | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
* Currently metrics in standalone mode are not collected by prometheus, we could add some configurations so that developers / users could experience ds metrics feature more conveniently.
* https://github.com/apache/dolphinscheduler/blob/3258438f6eaf59556fb4c495d532864b257b4c33/dolphinscheduler-meter/src/main/resources/grafana-demo/prometheus.yml#L18-L31

### Use case
* Already described above.
### Related issues
related: #9324
### Are you willing to submit a 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/10395 | https://github.com/apache/dolphinscheduler/pull/10398 | 3258438f6eaf59556fb4c495d532864b257b4c33 | e6d39910fb64d8377a75129d940bb9e6e5efc4d1 | 2022-06-10T03:11:32Z | java | 2022-06-10T05:08:27Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,394 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/UsersServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/utils/CheckUtils.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/utils/CheckUtilsTest.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java"] | [Bug-Backend] [Update Possword] Change password shows error | ### 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
Change password shows error
<img width="1915" alt="image" src="https://user-images.githubusercontent.com/76080484/172974838-9886e306-66ad-43d3-bbf6-7be742e4ce91.png">
<img width="1522" alt="image" src="https://user-images.githubusercontent.com/76080484/172974906-9d33f9b3-b64e-447f-9127-95548ec0c0c8.png">
### What you expected to happen
Successfully modified
Back-end verification, as long as the old and new passwords are not equal
### How to reproduce
change Password
Before modification: dolphinscheduler123
Modified: dolphinscheduler123456
### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10394 | https://github.com/apache/dolphinscheduler/pull/10437 | eecc49e70c40a514e2ecee56207ec5f81483dc52 | d16e0ddb2f1c68fccc5cf41481d769c2a1012379 | 2022-06-10T02:03:30Z | java | 2022-06-15T10:44:26Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,390 | ["dolphinscheduler-tools/src/main/resources/application.yaml"] | [Bug] [Tools] DB configurations not work for tools | ### 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
* If we set database to `mysql` in `dolphinscheduler_env.sh`, when running `upgrade-schema.sh` in `tools`, will get errors like `Caused by: java.lang.RuntimeException: Driver com.mysql.cj.jdbc.Driver claims to not accept jdbcUrl, jdbc:postgresql://127.0.0.1:5432/dolphinscheduler`
* `datasource.url` is somehow deleted in PR: #10128 , causing the datasource url will not be overwritten if `mysql` profile activated. I'm confused why that line was deleted in that PR.
* https://github.com/apache/dolphinscheduler/blob/9782fe4e7cd0c9313c748bb45b5b1f2d1ddd3367/dolphinscheduler-tools/src/main/resources/application.yaml#L39-L46

### What you expected to happen
* Already described above.
### How to reproduce
* Already described above.
### 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/10390 | https://github.com/apache/dolphinscheduler/pull/10399 | 8205444e0a9265b7f76a498ae9d0e7091800aac5 | 42d4aba347ce0b92152a8c4b025d8699c0e5d256 | 2022-06-09T16:12:30Z | java | 2022-06-14T12:20:54Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,386 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/UsersServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/security/impl/ldap/LdapAuthenticatorTest.java"] | [Bug] [dolphinscheduler-api] When connecting to ldap, ldap users cannot log in | ### 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
当配置 conf/application-api.properties 为ldap认证时
```
security.authentication.type=LDAP
ldap.urls=ldap://xx.xx.xx.xx:389
ldap.base.dn=cn=users,cn=accounts,dc=hadoop,dc=com
ldap.username=cn=Directory Manager
ldap.password=xxxx
ldap.user.identity.attribute=uid
ldap.user.email.attribute=mail
```

### What you expected to happen
报错是用户停用,查询数据库发现
```
id: 2
user_name: user1
user_password: NULL
user_type: 1
email: [email protected]
phone: NULL
tenant_id: 0
create_time: 2022-06-08 11:01:43
update_time: 2022-06-08 11:01:43
queue:
state: 0
```
state状态为0
代码中创建从ladp读取的用户state默认都是0,这样对接ladp后,ladp中的用户仍然不能登录
### How to reproduce
操作如上,配置任何ladp均会出现上述现象。
### Anything else
_No response_
### Version
2.0.5
### Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
| https://github.com/apache/dolphinscheduler/issues/10386 | https://github.com/apache/dolphinscheduler/pull/10426 | 0efcd5c6317c9e12c172103a4ed6df0cdcda027d | 50846760e5ab5f68cb708edc72725b235e933a34 | 2022-06-09T09:32:41Z | java | 2022-06-15T02:19:27Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,384 | ["docs/docs/en/faq.md", "docs/docs/en/guide/alert/email.md", "docs/docs/zh/faq.md", "docs/docs/zh/guide/alert/email.md", "docs/img/alert/email-alter-setup1-en.png", "docs/img/alert/email-alter-setup2-en.png", "docs/img/alert/email-alter-setup3-en.png"] | [Bug] [Doc] The faq.md file is not updated in time | ### 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 browsed the faq.md file, I found that the alert.properties mentioned in it does not exist in the dolphinscheduler-alter module.
### What you expected to happen
I want to try to configure the alert mailbox.
### How to reproduce
In idea, first switch to the 3.0.0-beta-1-release branch, and then open the faq.md and configuration.md files:



enter the dolphinscheduler-alter module:

### Anything else
_No response_
### Version
3.0.0-beta-1
### 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/10384 | https://github.com/apache/dolphinscheduler/pull/10401 | 00f86da1da869b155de454f96c821360d4043fb2 | b8d5e78994f43d8febf6ff6ae565dab45f2c8c2f | 2022-06-09T08:05:36Z | java | 2022-06-17T13:16:38Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,372 | ["docs/configs/docsdev.js"] | [Feature][Task Plugin] Add DVC task plugin | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
In the MLOps scenario, data versioning is an important module that can help data scientists perform data versioning so that machine learning experiments and team data sharing and management can be carried out more clearly.
[DVC](https://github.com/iterative/dvc) is an Open-source Version Control System for Machine Learning Projects, I think the DVC task plugin in DolphinScheduler can help users with visual operations to manage data versions.
### Use case
- [x] Easy to add or update data to a data repository, and tag the data version
- [x] Easy to download a specific version of data from a data repository
- [x] Big file data management, as it's officially said: "Switching to a different version of a 100Gb file in less than a second with a git checkout"
### Related issues
_No response_
### Are you willing to submit a 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/10372 | https://github.com/apache/dolphinscheduler/pull/10529 | bc4ceda4cf864d068583879ae8f35afdaaefeccb | 3918140e7e1c9c9331736dae570657d0aa22f450 | 2022-06-07T10:03:44Z | java | 2022-06-23T02:01:49Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,370 | ["docs/docs/en/about/glossary.md", "docs/docs/zh/about/glossary.md", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ExecutorController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ExecutorServiceTest.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteRunnable.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/corn/CronUtils.java"] | [Improvement] [Api & Master] Complement function transformation | ### 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
The function of replenishment is changed to that the user enters the data date of the amount to be replenished. The system generates a batch of task instances in batch based on the date entered by the user
### What you expected to happen
Remove the dependency on scheduled tasks
### How to reproduce
1.The replenishment function is changed to enter the data date of the amount to be replenished by the user. The system generates a batch of task instances in batch based on the date entered by the user.
2.Remove the dependency on scheduled tasks
3.Change the filling method of data date to manual input of text box

### 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/10370 | https://github.com/apache/dolphinscheduler/pull/10376 | 088c5e8ae2b86d70870db3c594378192657a0d41 | f6fea06f1051f5962106e6299eea9696bddf12d4 | 2022-06-07T02:44:52Z | java | 2022-06-12T04:35:08Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,356 | ["dolphinscheduler-dist/release-docs/LICENSE", "pom.xml", "tools/dependencies/known-dependencies.txt"] | [Bug] upgrade logback due to cve | ### 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
https://mvnrepository.com/artifact/ch.qos.logback/logback-core shows the CVEs
### What you expected to happen
n/a
### How to reproduce
n/a
### 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/10356 | https://github.com/apache/dolphinscheduler/pull/10357 | b6350280e66f604968e249919dc4a13a04eecee4 | d044e0479deb88c694973d0e0c51d8b7cbcfac06 | 2022-06-03T00:30:45Z | java | 2022-06-03T11:21:40Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,354 | ["dolphinscheduler-dist/release-docs/LICENSE", "pom.xml", "tools/dependencies/known-dependencies.txt"] | [Bug] update commons-io due to cve | ### 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
https://mvnrepository.com/artifact/commons-io/commons-io shows the CVEs
### What you expected to happen
n/a
### How to reproduce
n/a
### 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/10354 | https://github.com/apache/dolphinscheduler/pull/10355 | 0bf4043d5f19ac606a2dea94ec9294df7a37df07 | b6350280e66f604968e249919dc4a13a04eecee4 | 2022-06-03T00:25:54Z | java | 2022-06-03T09:17:52Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,349 | ["dolphinscheduler-api/pom.xml"] | [Bug] [API] Task parameter check error | ### 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 start the `dolphinscheduler-api`, `dolphinscheduler-master`, `dolphinscheduler-worker`. And create a task, I get an error.
<img width="1404" alt="image" src="https://user-images.githubusercontent.com/22415594/171610402-b4d2dc21-138e-4ed5-9852-5e8fbabbce48.png">
This is caused by we remove the task plugin dependencies in `dolphinscheduler-api` module, but we rely the task plugin module to do the parameter check.
### What you expected to happen
xx
### How to reproduce
Create a task in cluster mode.
### 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/10349 | https://github.com/apache/dolphinscheduler/pull/10350 | 96496f72550ec7afca8b3e8a6200641cf386dd80 | b02243c2f5b34c40f7bdd6109e30fe4609ede93d | 2022-06-02T10:29:01Z | java | 2022-06-02T14:12:27Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,343 | ["docs/docs/en/guide/project/workflow-definition.md", "docs/docs/zh/guide/project/workflow-definition.md"] | [Bug] [Docs] Function description error of complement module | ### 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
Function description error of complement module
### What you expected to happen
above.
### How to reproduce
above.
### 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/10343 | https://github.com/apache/dolphinscheduler/pull/10344 | 70dbcb21555e6b49fbf64359f77982c47b4f6902 | d1c47c99add4f9a7d2304f86c060f087d0738f2a | 2022-06-02T07:48:15Z | java | 2022-06-02T08:13:51Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,341 | [".gitignore", "dolphinscheduler-datasource-plugin/dolphinscheduler-datasource-hive/src/main/java/org/apache/dolphinscheduler/plugin/datasource/hive/HiveDataSourceClient.java", "dolphinscheduler-log-server/src/main/java/org/apache/dolphinscheduler/server/log/LoggerRequestProcessor.java", "dolphinscheduler-remote/src/main/java/org/apache/dolphinscheduler/remote/NettyRemotingServer.java"] | [Bug] [Worker] Worker will not exit when fail to start | ### 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 the worker start failure due to database connect error or some other initializes error. The worker will hang, since there are some no-damon thread is still running.
### What you expected to happen
When worker start failuer, the worker process exit.
### How to reproduce
Set an error db connect info, then start worker.
### Anything else
Find the worker process will not exit, use jstack find there are some thread is running.
### 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/10341 | https://github.com/apache/dolphinscheduler/pull/10342 | da3c25dc6792264d003b6f0a10341f04ef970997 | 516757cc7400b576ca0933dd5826005db06fa508 | 2022-06-02T07:41:23Z | java | 2022-06-06T02:49:23Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,338 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/constants/ApiFuncIdentificationConstant.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ResourcesServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TenantServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ResourcesServiceTest.java"] | [Bug] [Permission] Tenants and users do not need to do post-creation association operations. | ### 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
Failed to create tenant, tenants and users do not need to do post-creation association operations
### What you expected to happen
Normal
### How to reproduce
Create a tenant.
### 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/10338 | https://github.com/apache/dolphinscheduler/pull/10339 | 0c25d4a3ceae0fec1cc800bcc171a0b77aae8ee4 | ffe809b2c5600593053210c42462d68fad9d6aca | 2022-06-02T06:15:10Z | java | 2022-06-05T14:34:25Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,327 | ["dolphinscheduler-ui/src/views/projects/overview/components/state-card.tsx"] | [Bug-FE][Overview] Project overview page status statistics are highly inconsistent. | ### 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

### What you expected to happen
Project overview page status statistics are highly inconsistent.
### How to reproduce
Fix it.
### 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/10327 | https://github.com/apache/dolphinscheduler/pull/10328 | e3e39cbdea879394447a51161c2e707d067103c6 | e8ad62bcd03ecbf947d7044ba261aa19b81cec92 | 2022-06-01T09:47:15Z | java | 2022-06-01T13:50:43Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,318 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-emr.ts"] | [Bug] [UI] EMR Task UI custom parameters Is not correct | ### 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
EMR Task UI custom parameters Is not correct
This task type does not support parameter passing, so there should be no `in` `out` option

### What you expected to happen
Use the normal key value parameter
### How to reproduce
Workflow Definition -> New EMR Task -> New Custom Parameter
### 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/10318 | https://github.com/apache/dolphinscheduler/pull/10334 | 35155cde9a77311076003dc13f50a8f6c87dea9d | 96496f72550ec7afca8b3e8a6200641cf386dd80 | 2022-05-31T15:54:58Z | java | 2022-06-02T10:51:43Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,317 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-jupyter.ts"] | [Bug] [ui] The tips of startTimeout in the jupyter form is error | ### 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
The tips of startTimeout in the jupyter form is error.

### What you expected to happen
Probably due to forget to modify it.
### How to reproduce
Create a jupyter task.
### Anything else
close [#10319](https://github.com/apache/dolphinscheduler/pull/10319)
### 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/10317 | https://github.com/apache/dolphinscheduler/pull/10319 | 0ff34b8730643eb13aba89cf0d6b3a42f26817f3 | 3f2a21293d1b7cc8fe12a5e951fda15d231b05ac | 2022-05-31T15:45:51Z | java | 2022-06-01T02:19:36Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,309 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/dispatch/host/LowerWeightHostManager.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/registry/ServerNodeManager.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/registry/WorkerInfoChangeListener.java"] | [Improvement][Master] Remove the schedule thread in LowerWeightHostManager | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
When we use LOWER_WEIGHT strategy to dispatch the task, the master will use a schedule thread to sync the worker's info from ServerNodeManager, see code in LowerWeightHostManager.
It's better to use notification rather than schedule pooling, this can reduce the invalid looping.
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10309 | https://github.com/apache/dolphinscheduler/pull/10310 | 36e20cdfc8d668b56ab60e273a7327ca41c57a04 | b100f6c4890fb8db8887e24891c6af963c582360 | 2022-05-31T08:27:41Z | java | 2022-06-21T05:30:07Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,305 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/S3Utils.java"] | [Bug] [Task] Constant definitions are repeated | ### 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
The constants of the following configuration items have repeated definitions
```
aws.access.key.id
aws.secret.access.key
aws.region
```
Respectively in
org.apache.dolphinscheduler.plugin.task.api.TaskConstants
org.apache.dolphinscheduler.common.Constants
### What you expected to happen
Is it necessary to duplicate definitions? Is it possible to use one set?
### How to reproduce
Respectively in
org.apache.dolphinscheduler.plugin.task.api.TaskConstants
org.apache.dolphinscheduler.common.Constants
### 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/10305 | https://github.com/apache/dolphinscheduler/pull/10311 | e57c2d1663c359041d926716cb0bcb398242b274 | 70dbcb21555e6b49fbf64359f77982c47b4f6902 | 2022-05-30T16:22:36Z | java | 2022-06-02T05:56:36Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,302 | ["docs/docs/en/guide/task/jupyter.md", "docs/docs/zh/guide/task/jupyter.md", "dolphinscheduler-task-plugin/dolphinscheduler-task-jupyter/src/main/java/org/apache/dolphinscheduler/plugin/task/jupyter/JupyterConstants.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-jupyter/src/main/java/org/apache/dolphinscheduler/plugin/task/jupyter/JupyterParameters.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-jupyter/src/main/java/org/apache/dolphinscheduler/plugin/task/jupyter/JupyterTask.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-jupyter/src/test/java/org/apache/dolphinscheduler/plugin/task/jupyter/JupyterTaskTest.java", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-jupyter.ts"] | [Feature][Task Plugin] Enable users to switch and install conda env in jupyter task | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
* Currently users need to manually create conda env and install all libs on workers when using `jupyter task plugin`, which is not convenient with multiple workers. If workers do not have public ips, it will be more torturing.
* By adding this feature, we could enable users to switch conda envs in jupyter task, something like switching interpreters in `PyCharm`. Users will upload their packed conda envs to `resource center`, and choose the one needed when setting up jupyter task.

### Use case
* Already described above.
### Related issues
_No response_
### Are you willing to submit a 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/10302 | https://github.com/apache/dolphinscheduler/pull/10337 | 79ce5d78cd22e5d548bd3285e169ba51b1a83d26 | 64cee03fed1002770e552abbce451b699c252cdc | 2022-05-30T13:48:10Z | java | 2022-06-20T06:47:44Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,300 | ["dolphinscheduler-common/pom.xml", "dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/utils/HttpUtilsTest.java", "dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/utils/LocalJettyHttpServer.java", "dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/utils/LocalServerHttpUtilsTest.java"] | [Bug] [dolphinscheduler] http client test frequent request timeout | ### 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
Frequent request timeouts when testing `org.apache.dolphinscheduler.common.utils.HttpUtilsTest` then the entire mvn test progress failed, resulting in the need to restart
### What you expected to happen
Passed the test
### How to reproduce
Run the `mvn test -e`
### Anything else
_No response_
### Version
dev
### Are you willing to submit PR?
- [X] Yes I am willing to submit a PR!
#10294
### 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/10300 | https://github.com/apache/dolphinscheduler/pull/10294 | 3918140e7e1c9c9331736dae570657d0aa22f450 | b2879c0e056b48c37d250b7b93cafdfba4621129 | 2022-05-30T11:55:08Z | java | 2022-06-23T02:46:50Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,297 | ["dolphinscheduler-ui/src/locales/en_US/monitor.ts", "dolphinscheduler-ui/src/locales/zh_CN/monitor.ts", "dolphinscheduler-ui/src/views/monitor/servers/db/index.tsx"] | [Bug-FE][DB] When the DB page has no data, you need to increase the result page. | ### 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

### What you expected to happen
When the DB page has no data, you need to increase the result page.
### How to reproduce
Fix it.
### 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/10297 | https://github.com/apache/dolphinscheduler/pull/10298 | 12a09f6d5dc6635fcfaa430dc1d45240d2d34a05 | 2e6d3f5190f5ce576094d6d5ea294f118be66ed3 | 2022-05-30T11:01:31Z | java | 2022-05-30T11:28:36Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,293 | ["docs/docs/en/guide/resource/file-manage.md", "docs/docs/zh/guide/resource/file-manage.md", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ResourcesServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ResourcesServiceTest.java"] | [Bug] [Api-Server] Improve exception handling when admin user uploads file in resource center | ### 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
* If user logs in with admin role and does not set tenant, there will be `null pointer exception` when he / she tries to upload files in `resource center`.

### What you expected to happen
* We need some exception handling here and provide users with instructive error message: https://github.com/apache/dolphinscheduler/blob/8d26d4fe72aa81437103716b22f52ef6dc515a14/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ResourcesServiceImpl.java#L653-L656
* We need to remind users that tenant should be set before playing with `resource center` if they log in with `admin` role.
### How to reproduce
* Already described above.
### 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/10293 | https://github.com/apache/dolphinscheduler/pull/10303 | 3f2a21293d1b7cc8fe12a5e951fda15d231b05ac | 442f93544eef5436f82a0c9f7dacde93d4347090 | 2022-05-30T07:41:04Z | java | 2022-06-01T09:22:36Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,282 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/JSONUtils.java", "dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/utils/JSONUtilsTest.java"] | [Bug] [dolphinscheduler-common] JSONUtils tool class time zone problem reporting error | ### 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
report error in mvn test,but not occur error when use Junit to run JSONUtilsTets.java file。
```
@Test
public void dateToString() {
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Shanghai"));
String time = "2022-02-22 13:38:24";
Date date = DateUtils.stringToDate(time);
String json = JSONUtils.toJsonString(date);
Assert.assertEquals(json, "\"" + time + "\"");
String errorFormatTime = "Tue Feb 22 03:50:00 UTC 2022";
Assert.assertNull(DateUtils.stringToDate(errorFormatTime));
}
@Test
public void stringToDate() {
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Shanghai"));
String json = "\"2022-02-22 13:38:24\"";
Date date = JSONUtils.parseObject(json, Date.class);
Assert.assertEquals(date, DateUtils.stringToDate("2022-02-22 13:38:24"));
}
```
The dateToString and stringToDate methods get the following errors when running `mvn test`
```
[ERROR] Tests run: 19, Failures: 2, Errors: 0, Skipped: 0, Time elapsed: 0.118 s <<< FAILURE! - in org.apache.dolphinscheduler.common.utils.JSONUtilsTest
Tests run: 19, Failures: 2, Errors: 0, Skipped: 0, Time elapsed: 0.118 s <<< FAILURE! - in org.apache.dolphinscheduler.common.utils.JSONUtilsTest
stringToDate(org.apache.dolphinscheduler.common.utils.JSONUtilsTest) Time elapsed: 0.014 s <<< FAILURE!
java.lang.AssertionError: expected:<Tue Feb 22 21:38:24 CST 2022> but was:<Tue Feb 22 13:38:24 CST 2022>
at org.apache.dolphinscheduler.common.utils.JSONUtilsTest.stringToDate(JSONUtilsTest.java:280)
[ERROR] dateToString(org.apache.dolphinscheduler.common.utils.JSONUtilsTest) Time elapsed: 0.003 s <<< FAILURE!
dateToString(org.apache.dolphinscheduler.common.utils.JSONUtilsTest) Time elapsed: 0.003 s <<< FAILURE!
org.junit.ComparisonFailure: expected:<"2022-02-22 [05]:38:24"> but was:<"2022-02-22 [13]:38:24">
at org.apache.dolphinscheduler.common.utils.JSONUtilsTest.dateToString(JSONUtilsTest.java:269)
```
### What you expected to happen
use case passed
### How to reproduce
OS Version : Any
JDK Versin : Oracle JDK11
Run `mvn test -e ` in the terminal or press the button in IDEA
### Anything else
I wrote a demo to show how to reproduce it easily without waiting a long time for mvn test to run. I will analyze why this problem occurs and submit a pull request.
```
import org.apache.dolphinscheduler.common.utils.JSONUtils;
import org.apache.dolphinscheduler.common.utils.JSONUtilsTest;
import java.util.TimeZone;
public class TimeZoneTest {
public static void main(String[] args) {
TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
JSONUtils.createArrayNode();// This step is to load class and initialize JSONUtils's static code block
new JSONUtilsTest().stringToDate();
new JSONUtilsTest().dateToString();
}
}
```



The above one gives my demo and some source code screenshots. The reason for the bug is among them:
- when using junit to execute use cases, each use case is isolated, and the JSONUtils class will not be shared among multiple use cases. In this case, `TimeZone.setDefault(TimeZone.getTimeZone("Asia/Shanghai")) `will not fail.Because the JSONUtils class is reinitialized once per use case
- In the case of using` mvn test`, which is described in my demo, when the default time zone of the `TimeZone `class is set in other places through `TimeZone.setDefault`, the initialization of `JSONUtils` is carried out. At this time, `JSONUtils` final and static descriptors are modified parts The default time zone information in `TimeZone `will be loaded, and setting the `TimeZone `time zone via `TimeZone.setDefault(TimeZone.getTimeZone("Asia/Shanghai"))` in the future will not have any effect on JSONUtils.
上面个给出了我的demo和部分源码截图,bug出现的原因就在其中:
- 当使用junit执行用例时,每个用例都是隔离的,此时多个用例之间不会共享JSONUtils类,这种情况下就不会出现TimeZone.setDefault(TimeZone.getTimeZone("Asia/Shanghai"))失效。因为每个用例都会重新初始化一次JSONUtils类
- 而在使用mvn test的情况中,也就是我demo中描述的那样,当在其他地方通过TimeZone.setDefault设置过TimeZone类默认时区后再进行JSONUtils的初始化,此时JSONUtils final 和static描述符修饰的部分就会加载TimeZone中默认的时区信息,而在以后再通过TimeZone.setDefault(TimeZone.getTimeZone("Asia/Shanghai"))设置TimeZone时区并不会对JSONUtils产生任何影响。
### Version
dev
### Are you willing to submit PR?
- [X] Yes I am willing to submit a PR!
#10284
### 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/10282 | https://github.com/apache/dolphinscheduler/pull/10284 | ad2646ff1f7baa5d76d29023ced2c28a89b52f6b | 062146eecd9ceabbd6d1fd32747372802749d6bd | 2022-05-29T14:01:53Z | java | 2022-06-17T03:08:38Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,279 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/DependentTaskProcessor.java"] | [Improvement][Dependent] Dependent node log output optimization | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
Dependent node log output optimization
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10279 | https://github.com/apache/dolphinscheduler/pull/10593 | b21e211d2cbf7a2af2307f0a5c63dc9c2b837809 | 397e51fa63b39bc2ec2d68091c5b613aad7fa4ac | 2022-05-29T10:46:13Z | java | 2022-06-24T08:48:58Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,277 | ["dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-email/src/test/java/org/apache/dolphinscheduler/plugin/alert/email/template/DefaultHTMLTemplateTest.java"] | [Bug] [DolphinScheduler-alert-email] Running unit test testGetMessageFromTemplate() fails | ### 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
I can pass this test case on linux, but there is a problem on windows. Through debug, it is found that there is a problem with the newline character of the string generated by the `generateMockTableTypeResultByHand()` method. This method does not consider platform independence and uses `LF` hard-coded as a newline
### What you expected to happen
`generateMockTableTypeResultByHand()` generates platform-independent strings that pass the test case
### How to reproduce
OS : windows 10
JDK : JDK 8
Run `mvn clean test -e` in command line window
### Anything else
Bug info
`
[INFO] Running org.apache.dolphinscheduler.plugin.alert.email.template.DefaultHTMLTemplateTest
[ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.004 s <<< FAILURE! - in org.apache.dolphinscheduler.plugin.alert.email.template.DefaultHTMLTemplateTest
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.004 s <<< FAILURE! - in org.apache.dolphinscheduler.plugin.alert.email.template.DefaultHTMLTemplateTest
testGetMessageFromTemplate(org.apache.dolphinscheduler.plugin.alert.email.template.DefaultHTMLTemplateTest) Time elapsed: 0.004 s <<< FAILURE!
org.junit.ComparisonFailure:
]
<tr><td>mysql200</t...> but was:<...er</th></tr></thead>[]
<tr><td>mysql200</t...>
at org.apache.dolphinscheduler.plugin.alert.email.template.DefaultHTMLTemplateTest.testGetMessageFromTemplate(DefaultHTMLTemplateTest.java:44)
[INFO]
[INFO] Results:
[INFO]
[ERROR] Failures:
Failures:
]
<tr><td>mysql200</t...> but was:<...er</th></tr></thead>[]
<tr><td>mysql200</t...>
[INFO]
[ERROR] Tests run: 10, Failures: 1, Errors: 0, Skipped: 0
Tests run: 10, Failures: 1, Errors: 0, Skipped: 0
[INFO]
`
### 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/10277 | https://github.com/apache/dolphinscheduler/pull/10278 | 7ac8ea493cf6f458097c695baa500dd0c22b3bb8 | 62bd9d2c4c0ee110687d1454a34209a77f175d94 | 2022-05-29T08:54:07Z | java | 2022-05-29T10:44:26Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,266 | ["dolphinscheduler-ui/src/views/home/components/state-card.tsx"] | [Bug-FE] [Home] Status statistics card height is inconsistent. | ### 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

### What you expected to happen
Status statistics card height is inconsistent.
### How to reproduce
Fix it.
### 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/10266 | https://github.com/apache/dolphinscheduler/pull/10268 | 4c1ef0a89a81e3e7464300a7d010a4786abd3e7b | 1ac534be67826f3752bcde40a62428f95c88a334 | 2022-05-27T07:43:13Z | java | 2022-05-27T08:27:15Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,233 | ["docs/docs/en/guide/task/sql.md", "docs/docs/zh/guide/task/sql.md", "docs/img/tasks/demo/pre_post_sql.png"] | [Feature][doc] Add an example about how to use pre_sql post_sql in SQL task | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
https://dolphinscheduler.apache.org/zh-cn/docs/dev/user_doc/guide/task/sql.html
we should add an example about how to use presql and postsql in sql task, some users will use some select sql in pre/post sql and cause error
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10233 | https://github.com/apache/dolphinscheduler/pull/10685 | fcf4110ed8452cff72dda68af9d8dd093d22d989 | a45fc5b032e2bc0714dfa67e07c875184c5bf17b | 2022-05-24T13:52:44Z | java | 2022-06-30T12:01:23Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,225 | ["docs/docs/en/development/development-environment-setup.md", "docs/docs/zh/development/development-environment-setup.md", "dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/resources/application.yaml", "dolphinscheduler-api/src/main/resources/application.yaml", "dolphinscheduler-data-quality/src/test/java/org/apache/dolphinscheduler/data/quality/configuration/ConfigurationParserTest.java", "dolphinscheduler-data-quality/src/test/java/org/apache/dolphinscheduler/data/quality/flow/reader/ReaderFactoryTest.java", "dolphinscheduler-master/src/main/resources/application.yaml", "dolphinscheduler-standalone-server/src/main/resources/application.yaml", "dolphinscheduler-tools/src/main/resources/application.yaml", "dolphinscheduler-worker/src/main/resources/application.yaml"] | [Improvement][Mysql] Change Mysql Driver | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
```
Loading class `com.mysql.jdbc.Driver'.
This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'.
The driver is automatically registered via the SPI and manual loading
of the driver class is generally unnecessary.
```
We need to change to `com.mysql.cj.jdbc.Driver`.
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10225 | https://github.com/apache/dolphinscheduler/pull/10220 | 87d9ec1deee4d7e492d4fe4da404ec513655636d | aba5f8a40e9b86068cf9bff374bf1842c0beaf3f | 2022-05-24T07:36:08Z | java | 2022-05-25T06:09:15Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,222 | ["docs/docs/en/guide/task/shell.md", "docs/docs/zh/guide/task/shell.md"] | [Feature][doc] Add how to use resource in shell task | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
https://dolphinscheduler.apache.org/zh-cn/docs/dev/user_doc/guide/task/shell.html we just tell the user how to use variable in shell task, we should also add some examples about how to use resource file in shell task
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10222 | https://github.com/apache/dolphinscheduler/pull/10308 | 442f93544eef5436f82a0c9f7dacde93d4347090 | 6828c9e015d02b792c14aabf0a99394a158e9a87 | 2022-05-24T07:25:36Z | java | 2022-06-01T09:28:27Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,214 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java"] | [Bug] [WorkFlow] Delete online workflows in batches, prompt information is inaccurate | ### 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
Delete online workflows in batches, prompt information is inaccurate
### What you expected to happen
Delete online workflows in batches, prompt information is accurate
### How to reproduce

### Anything else
_No response_
### Version
3.0.0-alpha
### 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/10214 | https://github.com/apache/dolphinscheduler/pull/10215 | 4dbe27bb8f7e87fcf18582e970d08236f2dbf3d5 | edcb7aad23f73fb166efc3863dfb58e137ca05b4 | 2022-05-23T19:06:15Z | java | 2022-05-24T02:18:03Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,208 | ["script/scp-hosts.sh"] | [Bug] [Deploy] Worker group configuration not working | ### 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 deploying DS in `cluster-mode`, worker group configuration does not work.
* From the code below, since script `scp-hosts` and directory `worker-server` are not in the same dir, `sed` worker group in application.yaml will not take effect and give an error like `xxx/application.yaml` not found. https://github.com/apache/dolphinscheduler/blob/31cb4853129fb01e21be523d1f87c72258d7fe01/script/scp-hosts.sh#L19-L20
https://github.com/apache/dolphinscheduler/blob/31cb4853129fb01e21be523d1f87c72258d7fe01/script/scp-hosts.sh#L51-L61
### What you expected to happen
* described as above
### How to reproduce
* described as above
### 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/10208 | https://github.com/apache/dolphinscheduler/pull/10209 | 54ab2651bdb1f3a9865bb9732ad736ca3fbc900f | 4dbe27bb8f7e87fcf18582e970d08236f2dbf3d5 | 2022-05-23T13:28:21Z | java | 2022-05-24T01:53:11Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,207 | ["dolphinscheduler-ui/src/views/security/alarm-instance-manage/use-form.ts"] | [Bug] [Create Alarm Instance] When you enter the alarm instance management, the "Alarm Instance Component is Empty" error appears on the front end, and clicking "Create Alarm Instance" is always loading | ### 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


### What you expected to happen
You can create an alarm instance
### How to reproduce
None.
### Anything else
_No response_
### Version
3.0.0-alpha
### 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/10207 | https://github.com/apache/dolphinscheduler/pull/9924 | d8db2b57d22ed853232d60a6b33462fa442b838b | c5c68a88935095ce277ecd3cfbdacea49e1b50cb | 2022-05-23T13:04:14Z | java | 2022-05-25T10:13:42Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,199 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ProcessDefinitionController.java"] | [Bug] [Workflow/Workflow Definition] After deleting messages in batches, the error message is repeated | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
After deleting messages in batches, the error message is repeated
### What you expected to happen
remove duplicate prompts
### How to reproduce
1. Multiple users share the same project
2. Create one workflow per user
3. A user deletes a workflow created by another user
### Anything else

### Version
3.0.0-alpha
### 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/10199 | https://github.com/apache/dolphinscheduler/pull/10201 | 31cb4853129fb01e21be523d1f87c72258d7fe01 | 0e8ed6ebb43c804e0264afe51657e98a54be962f | 2022-05-23T08:35:47Z | java | 2022-05-24T01:17:44Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,190 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/HeartBeat.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/OSUtils.java", "dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/os/OSUtilsTest.java", "dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/utils/HeartBeatTest.java", "dolphinscheduler-ui/src/locales/en_US/monitor.ts", "dolphinscheduler-ui/src/locales/zh_CN/monitor.ts", "dolphinscheduler-ui/src/views/monitor/servers/master/index.tsx", "dolphinscheduler-ui/src/views/monitor/servers/worker/index.tsx"] | [Bug] [E2E] The front-end page changes failed the E2E test | ### 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
relevance https://github.com/apache/dolphinscheduler/pull/10186
https://github.com/apache/dolphinscheduler/runs/6548541522?check_suite_focus=true

### What you expected to happen
pass
### How to reproduce
pass
### Anything else
_No response_
### Version
3.0.0-alpha
### 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/10190 | https://github.com/apache/dolphinscheduler/pull/10287 | 516757cc7400b576ca0933dd5826005db06fa508 | 67c4f2b25941392d66f282fd67a7f2b16388ef45 | 2022-05-23T05:03:47Z | java | 2022-06-06T03:06:33Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,182 | ["docs/docs/en/guide/task/datax.md", "docs/docs/zh/guide/task/datax.md", "dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxParameters.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/test/java/org/apache/dolphinscheduler/plugin/task/datax/DataxParametersTest.java", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-datax.ts"] | [Feature][Task] datax access kerberos authenticated bigdata cluster | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
Because Kerberos authentication is added to the big data cluster, when using DATAX to write data to HDFS, you need to use the tenant's KeyTab file to introduce it into json file. Can this file reference use the content of the resource center like a shell? When using, the dataX plug-in downloads the keytab file locally through the resource center runtime, so as to obtain the absolute path and then transfer the parameters into the JSON file, Instead of importing files into the specified server in advance.
### Use case
datax access kerberos authenticated bigdata cluster
### Related issues
datax:

shell:

### Are you willing to submit a 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/10182 | https://github.com/apache/dolphinscheduler/pull/11387 | 182455ced7e85000c51874d0cba07f5ca4a52146 | e5d06c40a524740454868dea9ed5fa778d9ccbf7 | 2022-05-22T03:35:33Z | java | 2022-08-17T02:01:20Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,171 | ["dolphinscheduler-ui/public/images/task-icons/seatunnel.png", "dolphinscheduler-ui/public/images/task-icons/seatunnel_hover.png"] | [Bug] [UI] DataQuality icon in workflow is the same as SeaTunnel icon | ### 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

### What you expected to happen
Data_Quality icon is same to SeaTunnel icon. hope to replace `data_quality.png` and `data_quality_hover.png`
### How to reproduce
come in Workflow Definition page
### 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/10171 | https://github.com/apache/dolphinscheduler/pull/10178 | 2251876021dea09786c418dfb1325366358a0601 | 0ef02e80935d9f6588233186e01ae5ca7f8b1e7a | 2022-05-20T09:19:08Z | java | 2022-05-21T06:36:27Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,168 | ["docs/docs/en/guide/task/sql.md", "docs/docs/zh/guide/task/sql.md", "dolphinscheduler-task-plugin/dolphinscheduler-task-sql/src/main/java/org/apache/dolphinscheduler/plugin/task/sql/SqlTask.java"] | [Improvement][task sql] Improve creating function query | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
enhance creating temp function query
### Use case
Current creating function query fail to handle all cases. For example, Kyuubi was taken as a datasource in DS, it's more likely to get a problem when setting the share level of Kyuubi engine to user.
### Related issues
_No response_
### Are you willing to submit a 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/10168 | https://github.com/apache/dolphinscheduler/pull/10170 | ffe809b2c5600593053210c42462d68fad9d6aca | da3c25dc6792264d003b6f0a10341f04ef970997 | 2022-05-20T08:57:08Z | java | 2022-06-06T02:33:24Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,167 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-http.ts"] | [BUG][UI] HTTP task verification request address error Bug title | ### 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 using the HTTP task to fill in the request address. Only requests starting with www can be verified, and an exception will be thrown for other requests.
### What you expected to happen
Allow verification of all reasonable request addresses.
### How to reproduce
click http modal
### 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/10167 | https://github.com/apache/dolphinscheduler/pull/10166 | e2fac213991c30f0a7460e3576fa3bbb5e6e6d42 | 13a83e50f22bb9be2674a2f1edcb7a4193e372b5 | 2022-05-20T08:53:42Z | java | 2022-05-20T10:05:05Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,160 | ["docs/configs/site.js"] | [Bug] [doc] Inconsistent links between Chinese and English documents on the website | ### 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
1. Inconsistent links between Chinese and English documents on the website
2. The most recent release is V2.0.5 not V1.3.9
### What you expected to happen
1. Chinese and English document links are consistent
2. Update the latest version to 2.0.5
### How to reproduce

### Anything else
_No response_
### Version
3.0.0-alpha
### 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/10160 | https://github.com/apache/dolphinscheduler/pull/10161 | 7d5af7e7ec0efc01c81dab0384f7f80e103f0ec1 | e2fac213991c30f0a7460e3576fa3bbb5e6e6d42 | 2022-05-20T07:42:56Z | java | 2022-05-20T08:47:41Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,159 | ["dolphinscheduler-ui/src/views/data-quality/rule/use-table.ts", "dolphinscheduler-ui/src/views/data-quality/task-result/use-table.ts", "dolphinscheduler-ui/src/views/monitor/statistics/audit-log/use-table.ts"] | [Bug] [UI] Pagination not works well in DataQuality page | ### 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
missing assignment of `totalPage` result in pagination not works well in DataQuality page.

same problem in `DataQuality-Rule Management` page and `Monitor-Statical Mange-Audit Log` page.
### What you expected to happen
make pagination works well.

### How to reproduce
reproduce in `DataQuality-Rule Management` page
1. come in `DataQuality-Rule Management` page
2. handle change request `PageSize` less than 10(eg: 5)
3. reload the page.you'll see

### Anything else
just missing assign `totalPage` when request api back.
### 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/10159 | https://github.com/apache/dolphinscheduler/pull/10165 | 56e0ea802d93667de8c48796a9291a775abddd49 | 7fc3664ec366ffc7abbd8732d47e56f0f313bab7 | 2022-05-20T07:07:10Z | java | 2022-05-24T02:48:34Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,148 | ["dolphinscheduler-ui/src/locales/modules/en_US.ts", "dolphinscheduler-ui/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui/src/views/resource/task-group/option/components/form-modal.tsx", "dolphinscheduler-ui/src/views/resource/task-group/option/use-form.ts"] | [Bug] [Task group option] On the task group configuration page, specific prompts should be given if the capacity input is not numeric | ### 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

### What you expected to happen
specific prompts should be given if the capacity input is not numeric
### How to reproduce
1. Enter special characters , such as: -10.1a
### 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/10148 | https://github.com/apache/dolphinscheduler/pull/10158 | 3dd007ca599c5d3fdd6b32db8c2559991940ddc6 | c07339b07dea2182bf6a3ba1ff0bcc1fe1f4af55 | 2022-05-19T14:49:18Z | java | 2022-05-20T07:19:43Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,144 | ["dolphinscheduler-dist/release-docs/LICENSE", "dolphinscheduler-ui/package.json", "dolphinscheduler-ui/pnpm-lock.yaml"] | [Bug] [Workflow Definition] The network layout of the workflow is unusable, and the front end reports an error: h is not function, and the checked is: Full workflow | ### 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

### What you expected to happen
The network layout works normally
### How to reproduce
1.Go to the workflow network layout
2.Enter a row 1, Enter the column 1
3.Click OK
### 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/10144 | https://github.com/apache/dolphinscheduler/pull/11200 | 93a73b1292fb327ab181404213f7c03a5740d51c | 91a944f967592bc1698e078f28cead8b11753291 | 2022-05-19T14:41:15Z | java | 2022-07-29T09:39:45Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,143 | ["dolphinscheduler-ui/src/components/chart/modules/Tree.tsx"] | [Bug] [Workflow Definition] There is a problem with the workflow tree structure function, and the actual tree view is inconsistent with the preview diagram | ### 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


### What you expected to happen
Demonstrate a complete workflow.
### How to reproduce
None.
### 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/10143 | https://github.com/apache/dolphinscheduler/pull/10229 | 14e80ab5fd3a6c068fe168fb76c5b9c836edf113 | abecec3c28402b9781ae05831228af0f2bfb4a9f | 2022-05-19T14:37:28Z | java | 2022-05-24T10:33:00Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,141 | ["dolphinscheduler-ui/src/locales/modules/zh_CN.ts"] | [Bug] [Translation] Translation issue: Workflow definition, host filter item is not translated into Chinese | ### 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

### What you expected to happen
None.
### How to reproduce
None.
### 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/10141 | https://github.com/apache/dolphinscheduler/pull/10223 | de5507fb1965fd993ed5e07f31f2167642c87130 | 6cebdfdf5045862653a1d05354bdd3f039919f54 | 2022-05-19T14:32:38Z | java | 2022-05-24T08:14:56Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,140 | ["dolphinscheduler-ui/src/views/projects/workflow/definition/timing/use-table.ts"] | [Bug] [Translation] Translation issue: The failure policy under timing management is not translated into Chinese | ### 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

### What you expected to happen
None.
### How to reproduce
None.
### 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/10140 | https://github.com/apache/dolphinscheduler/pull/10169 | 13a83e50f22bb9be2674a2f1edcb7a4193e372b5 | dc61370f302c6f2e8d70f50573818dc057ef2827 | 2022-05-19T14:31:27Z | java | 2022-05-20T10:29:40Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,139 | ["dolphinscheduler-ui/src/components/crontab/modules/day.tsx"] | [Bug] [Workflow Definition] In workflow scheduling management, edit: Saturday, Sunday there will be a front-end error: Nan | ### 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

### What you expected to happen
Front-end error: Nan does not appear
### How to reproduce
1.Go to cron mange

2.edit

3.Specific day of the week(multiple)

4.comfirm

5.edit again

### 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/10139 | https://github.com/apache/dolphinscheduler/pull/10183 | 0ef02e80935d9f6588233186e01ae5ca7f8b1e7a | d7d6699e22091896a9ea78c5a2e49c2a1f54a7e4 | 2022-05-19T14:28:56Z | java | 2022-05-22T06:02:56Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,138 | ["dolphinscheduler-ui/src/locales/modules/en_US.ts", "dolphinscheduler-ui/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-rules.ts"] | [Bug] [workflows] Data_quality workflows in Chinese mode are not translated into Chinese | ### 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

### What you expected to happen
In Chinese mode, it should be displayed as a Chinese
### How to reproduce
None.
### Anything else
None.
### 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/10138 | https://github.com/apache/dolphinscheduler/pull/10202 | 41a318381067b285a03001e9ef43d8eaa107ff6a | c8a4c694eaac41ce9249b0cb41ad0da04b6d117c | 2022-05-19T14:21:46Z | java | 2022-05-23T10:17:30Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,104 | ["dolphinscheduler-ui/vite.config.ts"] | [Build][UI] `vite` config throws `terser` warning. | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description

### Use case
`esbuild` is incompatible with `terser` warning after upgrading `vite` version.
### Related issues
_No response_
### Are you willing to submit a 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/10104 | https://github.com/apache/dolphinscheduler/pull/10105 | ee2b855ced2e46bcdaf3ae7068941ac7e1c03c17 | bc71c3b0a0f7d93c3fccb850beb386fc5eb1a20c | 2022-05-18T10:47:55Z | java | 2022-05-18T14:12:52Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,103 | ["dolphinscheduler-tools/src/main/bin/upgrade-schema.sh", "dolphinscheduler-tools/src/main/resources/application.yaml", "dolphinscheduler-worker/src/main/resources/application.yaml"] | [Bug] [deploy on k8s] SPRING_DATASOURCE_DRIVER_CLASS_NAME need add in templates/_helpers.tpl | ### 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
[Bug] [deploy on k8s] SPRING_DATASOURCE_DRIVER_CLASS_NAME need add in templates/_helpers.tpl
### What you expected to happen
[Bug] [deploy on k8s] SPRING_DATASOURCE_DRIVER_CLASS_NAME need add in templates/_helpers.tpl
### How to reproduce
[Bug] [deploy on k8s] SPRING_DATASOURCE_DRIVER_CLASS_NAME need add in templates/_helpers.tpl
### Anything else
[Bug] [deploy on k8s] SPRING_DATASOURCE_DRIVER_CLASS_NAME need add in templates/_helpers.tpl
### 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/10103 | https://github.com/apache/dolphinscheduler/pull/10128 | f4b7754952f16f60f1850d672e25e05a2088c49d | de5507fb1965fd993ed5e07f31f2167642c87130 | 2022-05-18T10:45:51Z | java | 2022-05-24T05:59:42Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,102 | ["dolphinscheduler-ui/src/views/resource/task-group/queue/index.tsx", "dolphinscheduler-ui/src/views/resource/task-group/queue/use-table.ts"] | [Bug] [Api] Task Group Queue Query Error | ### 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
Run DS dev and login and click task-group-queue module, and the query fails.
<img width="2378" alt="WeChat4005f5436461c4fabc2f4df9315d0817" src="https://user-images.githubusercontent.com/20885366/169011924-3b652d1d-21e5-431f-82d8-b55df7fc8662.png">
### What you expected to happen
Query success.
### How to reproduce
⬆️
### 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/10102 | https://github.com/apache/dolphinscheduler/pull/10243 | c5c68a88935095ce277ecd3cfbdacea49e1b50cb | b337eef2e6cc66ec850b77e9114dea8d8ace0871 | 2022-05-18T09:52:57Z | java | 2022-05-25T11:22:07Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,095 | ["dolphinscheduler-ui/src/views/projects/task/components/node/format-data.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/types.ts"] | [Bug] [UI] missing some fields in DataQuality task | ### 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 `DataQuality` module. different `Rule` has different form fields. some fields are missed to commit. so it can't reload when edit.





### What you expected to happen
expect to reload the missed form fields data when edit DataQality task
### How to reproduce
1. create a DataQuality task
2. choose the rule showed above
3. input fields and save.
4. edit the created task again
### 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/10095 | https://github.com/apache/dolphinscheduler/pull/10098 | 5bb1eb04fce42dc3e6006d29d595318b1bf15914 | 7a4a21d0b1832fe173bfa371af9bf7baeddbb036 | 2022-05-18T07:41:44Z | java | 2022-05-18T10:28:24Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,092 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/TaskInstance.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/CommonTaskProcessor.java", "dolphinscheduler-master/src/test/java/org/apache/dolphinscheduler/server/master/consumer/TaskPriorityQueueConsumerTest.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/queue/PeerTaskInstancePriorityQueue.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/queue/TaskPriority.java", "dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/queue/PeerTaskInstancePriorityQueueTest.java", "dolphinscheduler-service/src/test/java/org/apache/dolphinscheduler/service/queue/TaskPriorityQueueImplTest.java"] | [Bug] [TaskGroup] Task group does not take effect | ### 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
Detailed scenario: the task group configures three resources and creates a workflow. Six tasks in the workflow (all of which are executed for 30s) use this task group. The priority in the group is 1 to 6, which corresponds to the task name. The six tasks are in parallel relationship. After startup, 2, 3 and 4 run first, and 1, 5 and 6 run in the second batch. According to the description in the document, the higher the priority number, the higher the priority. The expectation should be 4, 5, 6 and then 1, 2 and 3
Task group does not take effect.
### What you expected to happen
Submit higher priority tasks firstly. The order should be 4,5,6 and then 1,2,3
### How to reproduce
up
### 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/10092 | https://github.com/apache/dolphinscheduler/pull/10093 | 63f835715f8ca8bff79c0e7177ebfa5917ebb3bd | ee2b855ced2e46bcdaf3ae7068941ac7e1c03c17 | 2022-05-18T07:08:16Z | java | 2022-05-18T10:40:36Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,085 | ["dolphinscheduler-ui/src/locales/modules/en_US.ts", "dolphinscheduler-ui/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui/src/views/resource/udf/function/use-table.ts", "dolphinscheduler-ui/src/views/resource/udf/resource/use-table.ts"] | [Feature][UDF Manage] Add own user row | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
Add `own user` row in resource table and function table
<img width="1344" alt="image" src="https://user-images.githubusercontent.com/8847400/168946248-1a6a655e-7b06-437d-86ee-f24e01534965.png">
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a 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/10085 | https://github.com/apache/dolphinscheduler/pull/10086 | 225cb332d18e2fef58bf653d644f415dfcce2e99 | 91f1d45948d5d53b790aefbf589d4a91fba7f817 | 2022-05-18T02:43:04Z | java | 2022-05-18T04:00:51Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,083 | ["docs/docs/en/guide/start/docker.md", "docs/docs/zh/guide/start/docker.md", "dolphinscheduler-ui/src/locales/modules/zh_CN.ts"] | [Bug] [Docker] Docker Doc Error && Alert Plugin WebexTeams Chinese Translation Error | ### 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
- Due #10026 , changed the tools docker sh file position. Look [this](https://github.com/apache/dolphinscheduler/pull/10026/files#diff-0387d45c2bcdee3461774d4db10eab3cb580238d04dbd3511dfd19775a64d082R31)
And the Docker Doc don't change the sh file position.
```
$ docker run -d --name dolphinscheduler-tools \
-e DATABASE="postgresql" \
# Use "com.mysql.cj.jdbc.driver" if you use MySQL
-e SPRING_DATASOURCE_DRIVER_CLASS_NAME="org.postgresql.Driver" \
-e SPRING_DATASOURCE_URL="jdbc:postgresql://localhost:5432/<DATABASE>" \
-e SPRING_DATASOURCE_USERNAME="<USER>" \
-e SPRING_DATASOURCE_PASSWORD="<PASSWORD>" \
--net host \
apache/dolphinscheduler-tools:"${DOLPHINSCHEDULER_VERSION}" bin/create-schema.sh
```
```bin/create-schema.sh``` will be ```tools/bin/upgrade-schema.sh``` at [this](https://github.com/apache/dolphinscheduler/pull/10026/files#diff-1173adb6eb42595c44743bc7b916e7594591b85269a4f132700eebcf907133bdR41)
- Alert Plugin WebexTeams field ```Destination``` Translation Error
### What you expected to happen
Docker Doc Current && Alert Plugin WebexTeams field ```Destination``` Translation Current
### How to reproduce
⬆️
### Anything else
I will open a PR to fix this.
### 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/10083 | https://github.com/apache/dolphinscheduler/pull/10084 | 3bca2404466d9ff1a8772e89f50b0dbb27448338 | cab46e6be53ff804048a0c4ca5cf37c2d7cf625a | 2022-05-18T02:28:00Z | java | 2022-05-18T05:53:44Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,080 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TenantServiceImpl.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java"] | [Bug] [API]When the created tenant name is too long, an error message will be prompted | ### 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 the created tenant name is too long, an error message will be prompted
### What you expected to happen
When the created tenant name is too long, an error message will be prompted
### How to reproduce
created tenant name is too long

### 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/10080 | https://github.com/apache/dolphinscheduler/pull/10081 | 0cc0ee77faabf1bed495a55ccd7653c03c26a550 | 67cf7b280087d4424bf0c2a698c9c12ab874bd2e | 2022-05-17T13:35:22Z | java | 2022-05-17T17:36:40Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,079 | ["dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskDefinitionLogMapper.xml"] | [Bug] [API] Create process definition with task group and task group priority cannot be save into db | ### 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
Create process definition with task group and task group priority cannot be save into db
### What you expected to happen
Create process definition with task group and task group priority cannot be save into db
### How to reproduce
1.create process definition,edit task group priority is 5

2.save process definition
3.Re edit process definition, task group priority is 0

### Anything else
_No response_
### Version
2.0.5
### 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/10079 | https://github.com/apache/dolphinscheduler/pull/10078 | 67cf7b280087d4424bf0c2a698c9c12ab874bd2e | cd70ad584aae91958a187800a7083868e778d49b | 2022-05-17T13:16:50Z | java | 2022-05-18T01:41:03Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,076 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/interceptor/LoginHandlerInterceptor.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/interceptor/LoginHandlerInterceptorTest.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/UserMapper.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/UserMapper.xml", "dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/mapper/UserMapperTest.java"] | [Bug] [Api] token expire when different timezone between server and database | ### 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
Token expire when different timezone between server and database, and I found the sql use database timestamp.
```
<select id="queryUserByToken" resultType="org.apache.dolphinscheduler.dao.entity.User">
select
<include refid="baseSqlV2">
<property name="alias" value="u"/>
</include>
from t_ds_user u ,t_ds_access_token t
where u.id = t.user_id and token=#{token} and t.expire_time > NOW()
</select>
```
It's better to use server timestamp.
### What you expected to happen
The token is normal when the expiration time has not expired
### How to reproduce
1. database use default timezone like CST
2. ds api server timezone use Asia/Shanghai
3. then create a token, just hour + 1 than current time.
### 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/10076 | https://github.com/apache/dolphinscheduler/pull/10177 | d7d6699e22091896a9ea78c5a2e49c2a1f54a7e4 | bd34e66b8a493a2aa14af5884f2f7c13819004f2 | 2022-05-17T11:13:41Z | java | 2022-05-23T01:54:11Z |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 10,069 | ["dolphinscheduler-ui/src/service/modules/resources/types.ts", "dolphinscheduler-ui/src/views/resource/file/use-file.ts"] | [BUG-FE][File Manage] Resource userName is Empty | ### 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
<img width="1201" alt="image" src="https://user-images.githubusercontent.com/8847400/168745996-6a6e723b-dbd1-4de0-bd5d-773dcfd7cf36.png">
### What you expected to happen
above
### How to reproduce
above
### 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/10069 | https://github.com/apache/dolphinscheduler/pull/10070 | 359300380b0a2eb469beb0497271bda675860d7d | c16424027e369c8cde2da966f08ded06ba0744df | 2022-05-17T06:44:25Z | java | 2022-05-17T07:17:46Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.