status
stringclasses 1
value | repo_name
stringclasses 13
values | repo_url
stringclasses 13
values | issue_id
int64 1
104k
| updated_files
stringlengths 11
1.76k
| title
stringlengths 4
369
| body
stringlengths 0
254k
⌀ | issue_url
stringlengths 38
55
| pull_url
stringlengths 38
53
| before_fix_sha
stringlengths 40
40
| after_fix_sha
stringlengths 40
40
| report_datetime
unknown | language
stringclasses 5
values | commit_datetime
unknown |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,325 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteRunnable.java"] | [Bug] workflow state is FAILURE when last task node is forbidden | ### 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



for example,a workflow has two nodes and the last node is forbiddened to run,the first node gets error,but the whole workflow is successful.
### What you expected to happen
the whole workflow state is FAILURE
### How to reproduce
create a workflow has two nodes, set the first node throws exception,set the last node forbidden ,then start the workerflow.
The first node gets FAILURE,but the whole workflow is successful.
### Anything else
_No response_
### Version
3.1.x
### 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/12325 | https://github.com/apache/dolphinscheduler/pull/12424 | ba538067f291c4fdb378ca84c02bb31e2fb2d295 | 38b643f69b65f4de9dd43809404470934bfadc7b | "2022-10-12T01:25:02Z" | java | "2022-10-19T01:36:47Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,306 | ["dolphinscheduler-ui/src/layouts/content/components/user/use-dropdown.ts", "dolphinscheduler-ui/src/layouts/content/use-dataList.ts", "dolphinscheduler-ui/src/service/modules/login/types.ts", "dolphinscheduler-ui/src/service/modules/users/types.ts", "dolphinscheduler-ui/src/service/service.ts", "dolphinscheduler-ui/src/store/user/types.ts", "dolphinscheduler-ui/src/store/user/user.ts", "dolphinscheduler-ui/src/views/login/use-login.ts", "dolphinscheduler-ui/src/views/password/use-update.ts"] | [Bug] [UI]The password item always is disabled | ### 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

As shown in the figure above,the password item always is disabled.
### What you expected to happen
As shown in the figure below,I checked the source and find that it's disabled because the `securityConfigType` is null, and the `securityConfigType` is null because browser doesn't save it on the local after invoke the method `login()` and the method `getUserInfo()` never return `securityConfigType`.

### How to reproduce
100% reproduce
### Anything else
_No response_
### Version
3.1.x
### 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/12306 | https://github.com/apache/dolphinscheduler/pull/12437 | 70aef3ec21aa712f1f499f7b9b56bdb6b803d654 | 651588c98dbaae2261a2e34044afdbae99d23b60 | "2022-10-11T08:27:02Z" | java | "2022-10-21T01:27:50Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,301 | ["dolphinscheduler-microbench/src/main/java/org/apache/dolphinscheduler/microbench/base/AbstractBaseBenchmark.java", "dolphinscheduler-scheduler-plugin/dolphinscheduler-scheduler-quartz/src/main/java/org/apache/dolphinscheduler/scheduler/quartz/ProcessScheduleTask.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java", "pom.xml"] | [Migration][Test] jUnit4 -> jUnit5 UT cases migration | ### 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
* This is part of DSIP-10 #10573
* By this moment, we have added jUnit 5 dependencies #11332 and removed all `Powermock` related code #11405. It is high time that we migrate all the UT cases from jUnit 4 to jUnit 5 and remove the dependency of `junit-vintage-engine` so that there will be one and only one version of unit test cases, which is jUnit5, in the whole project.
### SOP
These two following articles are recommended for you to understand the whole process. In order to keep the instructions brief and concise, I summarize some key points of these two articles as well as add a few extra operations based on practice for your reference:
* https://blogs.oracle.com/javamagazine/post/migrating-from-junit-4-to-junit-5-important-differences-and-benefits
* https://blog.jetbrains.com/idea/2020/08/migrating-from-junit-4-to-junit-5/
BTW, I suggest you perform this SOP below by module or by file, instead of doing it for the whole project. This helps you increase efficiency.
1. Perform basic migration through `Intellij IDE` for the module you choose.

2. Replace `@RunWith(MockitoJUnitRunner.class)` with `@ExtendWith(MockitoExtension.class)` if necessary.
3. Replace `Assert` with `Assertions`.
4. Fix expected exception if necessary.
```java
// jUnit 4
@Test(expected = Exception.class)
public void testThrowsException() throws Exception {
// ...
}
// jUnit 5
@Test
public void testThrowsException() throws Exception {
Assertions.assertThrows(Exception.class, () -> {
//...
});
}
```
6. Fix timeout if necessary.
```java
// jUnit 4
@Test(timeout = 10)
public void testFailWithTimeout() throws InterruptedException {
Thread.sleep(100);
}
// jUnit 5
@Test
void testFailWithTimeout() throws InterruptedException {
Assertions.assertTimeout(Duration.ofMillis(10), () -> Thread.sleep(100));
}
Assertions.assertTimeout(Duration.ofMillis(60000), () -> {});
```
8. Replace `@Ignore` with `@Disable` if necessary.
9. Replace `org.junit.rules.TemporaryFolder` with `org.junit.jupiter.api.io.TempDir` and use `@TempDir` if necessary.
10. Run the UT file you changed to see whether all cases pass successfully.
11. Fix unnecessary stubbings if necessary. This is caused by changing `@Before` into `@BeforeEach`. The recommend method is to use `@MockitoSettings(strictness = Strictness.LENIENT)`. Alternatively, you could either remove the unnecessary stubbings from `@BeforeEach` and only put them where they needed or use `Mockito.lenient().when(......` for `Mockito.when(......` to bypass the `stubbing check`.
12. Global search in your module and make sure all `org.junit.xxxx` has been migrated to `org.junit.jupiter.api.xxx`
### PR Example
* #12299
### Sub-Tasks
We hope to complete all the following sub-tasks ***before Oct. 25th*** because DSIP-10 depends on this issue and all UT cases are supposed to be migrated to jUnit 5 before the start of UT refactoring.
- [x] Migrate all UT cases from jUnit 4 to jUnit 5 in `task-plugin` module: #12299
- [x] Migrate all UT cases from jUnit 4 to jUnit 5 in `alert` and `api` module: #12313
- [x] Migrate all UT cases from jUnit 4 to jUnit 5 in `dao` module: #12319
- [x] Migrate all UT cases from jUnit 4 to jUnit 5 in `data-quality`, `datasource-plugin` and `registry` module: #12322
- [x] Migrate all UT cases from jUnit 4 to jUnit 5 in `master`, `worker` and `remote` module: #12316
- [x] Migrate all UT cases from jUnit 4 to jUnit 5 in `common`, `service` and `spi` module: #12317
- [x] Migrate all UT cases from jUnit 4 to jUnit 5 in `microbench` and `e2e` module: #12333
- [x] Block explicit imports of jUnit 4 library. #12395
### 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/12301 | https://github.com/apache/dolphinscheduler/pull/12450 | 0eef2e3e10ca8d20d8a0ad59b0f0674f90ee321c | 0a6e8af864423dac2aff279bf56f6f1ee95e95b9 | "2022-10-10T12:48:52Z" | java | "2022-10-20T04:12:17Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,284 | ["docs/docs/en/guide/installation/pseudo-cluster.md", "docs/docs/zh/guide/installation/pseudo-cluster.md"] | [Doc][Installation] Wrong version of zookeeper | ### 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
Should be 3.8.0 at least.
### Documentation Links
https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/installation/pseudo-cluster.html
### 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/12284 | https://github.com/apache/dolphinscheduler/pull/12288 | d9ac1fa0f70322de4985285231058f6a2e353325 | ef328d9cea8bff50ccbc70b5f27acc01bab6274a | "2022-10-10T02:06:43Z" | java | "2022-10-10T07:08:07Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,279 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/UsersServiceImpl.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/config/StoreConfiguration.java"] | [Bug] [API] When creating a user and throwing an exception the user can be created successfully. | ### 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
Currently when creating a user in DolphinScheduler the API will create the resource directory at the same time. Sometimes the settings of storage is not correct, so the process of creating the resource file will throw an exception. But the strategy of rollback didn't work. It's because that the annotation of '@Transactional' just deal with the exception of the RuntimeException type by default.


### What you expected to happen
When creating a user and throwing an exception the user shouldn't be created successfully.
### How to reproduce
First of all you should modify the file of 'common.properties' to set a few settings of resource storage like:
```
resource.storage.type=HDFS
resource.storage.upload.base.path=/dolphinscheduler
resource.hdfs.root.user=calvin
resource.hdfs.fs.defaultFS=hdfs://xxxxxx:8020
```
To make sure the user 'calvin' has no permissions to access the resource file '/dolphinscheduler'.
And then to create a new user you will see this problem.
### 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/12279 | https://github.com/apache/dolphinscheduler/pull/12281 | 7bf49a71795c4aa7e9544ce794e99b74950ccbf2 | b4947b471cad5d4b939f5a5f4a978c786c4decdc | "2022-10-09T09:58:03Z" | java | "2022-10-10T01:34:32Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,274 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java"] | [Bug] [Workflow Definition] copy workflow 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
press copy workflow button get an error. here's log

`[ERROR] 2022-10-09 06:18:41.012 +0000 org.apache.dolphinscheduler.api.exceptions.ApiExceptionHandler:[53] - 复制工作流错误
org.springframework.dao.DuplicateKeyException:
### Error updating database. Cause: org.postgresql.util.PSQLException: ERROR: duplicate key value violates unique constraint "t_ds_schedules_pkey"
Detail: Key (id)=(2) already exists.
### The error may exist in org/apache/dolphinscheduler/dao/mapper/ScheduleMapper.java (best guess)
### The error may involve org.apache.dolphinscheduler.dao.mapper.ScheduleMapper.insert-Inline
### The error occurred while setting parameters
### SQL: INSERT INTO t_ds_schedules ( id, process_definition_code, start_time, end_time, timezone_id, crontab, failure_strategy, warning_type, create_time, update_time, user_id, release_state, warning_group_id, process_instance_priority, worker_group, environment_code ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
### Cause: org.postgresql.util.PSQLException: ERROR: duplicate key value violates unique constraint "t_ds_schedules_pkey"
Detail: Key (id)=(2) already exists.
; ERROR: duplicate key value violates unique constraint "t_ds_schedules_pkey"
Detail: Key (id)=(2) already exists.; nested exception is org.postgresql.util.PSQLException: ERROR: duplicate key value violates unique constraint "t_ds_schedules_pkey"
Detail: Key (id)=(2) already exists.
at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:247)
at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:70)
at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)
at com.sun.proxy.$Proxy138.insert(Unknown Source)
at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:272)
at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:59)`
### What you expected to happen
successfully copy workflow
### How to reproduce
just press copy workflow
### Anything else
user pg as database
### Version
3.1.x
### 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/12274 | https://github.com/apache/dolphinscheduler/pull/12280 | 98a8b5383edf695811b64f6d871e8783e4a60003 | 18ef0a66cb91d9dfe6406f8ade6cfb2cff36492e | "2022-10-09T06:23:55Z" | java | "2022-10-11T02:53:25Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,257 | ["docs/docs/en/guide/data-quality.md", "docs/docs/zh/guide/data-quality.md", "dolphinscheduler-data-quality/pom.xml"] | [Bug] [Data Quality] No main class set in JAR | ### 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. DS Version: 3.1.0
2. Data Quality , datasource clickhouse check null
3. Spark Submit Missing main class
the following logs:
[LOG-PATH]: /opt/dolphinscheduler/worker-server/logs/20221007/7133023937376_2-25-29.log, [HOST]: Host{address='192.168.66.190:1234', ip='192.168.66.190', port=1234}
[INFO] 2022-10-07 15:53:04.851 +0000 - Begin to pulling task
[INFO] 2022-10-07 15:53:04.855 +0000 - Begin to initialize task
[INFO] 2022-10-07 15:53:04.855 +0000 - Set task startTime: Fri Oct 07 15:53:04 UTC 2022
[INFO] 2022-10-07 15:53:04.856 +0000 - Set task envFile: /opt/dolphinscheduler/worker-server/conf/dolphinscheduler_env.sh
[INFO] 2022-10-07 15:53:04.856 +0000 - Set task appId: 25_29
[INFO] 2022-10-07 15:53:04.856 +0000 - End initialize task
[INFO] 2022-10-07 15:53:04.857 +0000 - Set task status to TaskExecutionStatus{code=1, desc='running'}
[INFO] 2022-10-07 15:53:04.858 +0000 - TenantCode:xichen check success
[INFO] 2022-10-07 15:53:04.859 +0000 - ProcessExecDir:/opt/ds_base_dir/exec/process/7120503728992/7133023937376_2/25/29 check success
[INFO] 2022-10-07 15:53:04.859 +0000 - Resources:{} check success
[INFO] 2022-10-07 15:53:04.860 +0000 - Task plugin: DATA_QUALITY create success
[INFO] 2022-10-07 15:53:04.860 +0000 - data quality task params {"localParams":[],"resourceList":[],"ruleId":6,"ruleInputParameter":{"check_type":"0","comparison_type":1,"comparison_name":"10","failure_strategy":"0","operator":"4","src_connector_type":4,"src_datasource_id":1,"src_field":"c1_name","src_table":"dim_app_content","threshold":"10"},"sparkParameters":{"deployMode":"local","driverCores":1,"driverMemory":"512M","executorCores":2,"executorMemory":"2G","numExecutors":2,"others":"--conf spark.yarn.maxAppAttempts=1"}}
[INFO] 2022-10-07 15:53:04.872 +0000 - Success initialized task plugin instance success
[INFO] 2022-10-07 15:53:04.872 +0000 - Success set taskVarPool: null
[INFO] 2022-10-07 15:53:04.873 +0000 - data quality task command: **${SPARK_HOME2}/bin/spark-submit --master local --driver-cores 1 --driver-memory 512M --num-executors 2 --executor-cores 2 --executor-memory 2G --conf spark.yarn.maxAppAttempts=1 /opt/dolphinscheduler/worker-server/libs/dolphinscheduler-data-quality-3.1.0.jar "{\"name\":\"$t(uniqueness_check)\",\"env\":{\"type\":\"batch\",\"config\":null},\"readers\":[{\"type\":\"JDBC\",\"config\**":{\"database\":\"tech\",\"password\":\"123456\",\"driver\":\"ru.yandex.clickhouse.ClickHouseDriver\",\"user\":\"default\",\"output_table\":\"tech_dim_app_content\",\"table\":\"dim_app_content\",\"url\":\"jdbc:clickhouse://ch001:8123/tech\"} }],\"transformers\":[{\"type\":\"sql\",\"config\":{\"index\":1,\"output_table\":\"duplicate_items\",\"sql\":\"SELECT c1_name FROM tech_dim_app_content group by c1_name having count(*) > 1\"} },{\"type\":\"sql\",\"config\":{\"index\":2,\"output_table\":\"duplicate_count\",\"sql\":\"SELECT COUNT(*) AS duplicates FROM duplicate_items\"} }],\"writers\":[{\"type\":\"JDBC\",\"config\":{\"database\":\"ds\",\"password\":\"123456\",\"driver\":\"com.mysql.cj.jdbc.Driver\",\"user\":\"root\",\"table\":\"t_ds_dq_execute_result\",\"url\":\"jdbc:mysql://127.0.0.1:3306/ds?useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowPublicKeyRetrieval=true&allowLoadLocalInfile=false&autoDeserialize=false&allowLocalInfile=false&allowUrlInLocalInfile=false\",\"sql\":\"select 0 as rule_type,'$t(uniqueness_check)' as rule_name,0 as process_definition_id,25 as process_instance_id,29 as task_instance_id,duplicate_count.duplicates AS statistics_value,10 AS comparison_value,1 AS comparison_type,0 as check_type,10 as threshold,4 as operator,0 as failure_strategy,'hdfs://mycluster:8020/user/xichen/data_quality_error_data/0_25_ch' as error_output_path,'2022-10-07 15:53:04' as create_time,'2022-10-07 15:53:04' as update_time from duplicate_count \"} },{\"type\":\"JDBC\",\"config\":{\"database\":\"ds\",\"password\":\"123456\",\"driver\":\"com.mysql.cj.jdbc.Driver\",\"user\":\"root\",\"table\":\"t_ds_dq_task_statistics_value\",\"url\":\"jdbc:mysql://127.0.0.1:3306/ds?useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowPublicKeyRetrieval=true&allowLoadLocalInfile=false&autoDeserialize=false&allowLocalInfile=false&allowUrlInLocalInfile=false\",\"sql\":\"select 0 as process_definition_id,29 as task_instance_id,6 as rule_id,'1SYYJMCZZRKHUDNCCFM4ZRXJRQUM4DPPSQW5QMYGOLU=' as unique_code,'duplicate_count.duplicates'AS statistics_name,duplicate_count.duplicates AS statistics_value,'2022-10-07 15:53:04' as data_time,'2022-10-07 15:53:04' as create_time,'2022-10-07 15:53:04' as update_time from duplicate_count\"} },{\"type\":\"hdfs_file\",\"config\":{\"path\":\"hdfs://mycluster:8020/user/xichen/data_quality_error_data/0_25_ch\",\"input_table\":\"duplicate_items\"} }]}"
[INFO] 2022-10-07 15:53:04.873 +0000 - tenantCode user:xichen, task dir:25_29
[INFO] 2022-10-07 15:53:04.873 +0000 - create command file:/opt/ds_base_dir/exec/process/7120503728992/7133023937376_2/25/29/25_29.command
[INFO] 2022-10-07 15:53:04.874 +0000 - command : #!/bin/sh
BASEDIR=$(cd `dirname $0`; pwd)
cd $BASEDIR
source /opt/dolphinscheduler/worker-server/conf/dolphinscheduler_env.sh
${SPARK_HOME2}/bin/spark-submit --master local --driver-cores 1 --driver-memory 512M --num-executors 2 --executor-cores 2 --executor-memory 2G --conf spark.yarn.maxAppAttempts=1 /opt/dolphinscheduler/worker-server/libs/dolphinscheduler-data-quality-3.1.0.jar "{\"name\":\"$t(uniqueness_check)\",\"env\":{\"type\":\"batch\",\"config\":null},\"readers\":[{\"type\":\"JDBC\",\"config\":{\"database\":\"tech\",\"password\":\"123456\",\"driver\":\"ru.yandex.clickhouse.ClickHouseDriver\",\"user\":\"default\",\"output_table\":\"tech_dim_app_content\",\"table\":\"dim_app_content\",\"url\":\"jdbc:clickhouse://ch001:8123/tech\"} }],\"transformers\":[{\"type\":\"sql\",\"config\":{\"index\":1,\"output_table\":\"duplicate_items\",\"sql\":\"SELECT c1_name FROM tech_dim_app_content group by c1_name having count(*) > 1\"} },{\"type\":\"sql\",\"config\":{\"index\":2,\"output_table\":\"duplicate_count\",\"sql\":\"SELECT COUNT(*) AS duplicates FROM duplicate_items\"} }],\"writers\":[{\"type\":\"JDBC\",\"config\":{\"database\":\"ds\",\"password\":\"123456\",\"driver\":\"com.mysql.cj.jdbc.Driver\",\"user\":\"root\",\"table\":\"t_ds_dq_execute_result\",\"url\":\"jdbc:mysql://127.0.0.1:3306/ds?useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowPublicKeyRetrieval=true&allowLoadLocalInfile=false&autoDeserialize=false&allowLocalInfile=false&allowUrlInLocalInfile=false\",\"sql\":\"select 0 as rule_type,'$t(uniqueness_check)' as rule_name,0 as process_definition_id,25 as process_instance_id,29 as task_instance_id,duplicate_count.duplicates AS statistics_value,10 AS comparison_value,1 AS comparison_type,0 as check_type,10 as threshold,4 as operator,0 as failure_strategy,'hdfs://mycluster:8020/user/xichen/data_quality_error_data/0_25_ch' as error_output_path,'2022-10-07 15:53:04' as create_time,'2022-10-07 15:53:04' as update_time from duplicate_count \"} },{\"type\":\"JDBC\",\"config\":{\"database\":\"ds\",\"password\":\"123456\",\"driver\":\"com.mysql.cj.jdbc.Driver\",\"user\":\"root\",\"table\":\"t_ds_dq_task_statistics_value\",\"url\":\"jdbc:mysql://127.0.0.1:3306/ds?useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowPublicKeyRetrieval=true&allowLoadLocalInfile=false&autoDeserialize=false&allowLocalInfile=false&allowUrlInLocalInfile=false\",\"sql\":\"select 0 as process_definition_id,29 as task_instance_id,6 as rule_id,'1SYYJMCZZRKHUDNCCFM4ZRXJRQUM4DPPSQW5QMYGOLU=' as unique_code,'duplicate_count.duplicates'AS statistics_name,duplicate_count.duplicates AS statistics_value,'2022-10-07 15:53:04' as data_time,'2022-10-07 15:53:04' as create_time,'2022-10-07 15:53:04' as update_time from duplicate_count\"} },{\"type\":\"hdfs_file\",\"config\":{\"path\":\"hdfs://mycluster:8020/user/xichen/data_quality_error_data/0_25_ch\",\"input_table\":\"duplicate_items\"} }]}"
[INFO] 2022-10-07 15:53:04.878 +0000 - task run command: sudo -u xichen sh /opt/ds_base_dir/exec/process/7120503728992/7133023937376_2/25/29/25_29.command
[INFO] 2022-10-07 15:53:04.878 +0000 - process start, process id is: 26016
[INFO] 2022-10-07 15:53:07.238 +0000 - process has exited, execute path:/opt/ds_base_dir/exec/process/7120503728992/7133023937376_2/25/29, processId:26016 ,exitStatusCode:1 ,processWaitForStatus:true ,processExitValue:1
[INFO] 2022-10-07 15:53:07.241 +0000 - Send task execute result to master, the current task status: TaskExecutionStatus{code=6, desc='failure'}
[INFO] 2022-10-07 15:53:07.241 +0000 - Remove the current task execute context from worker cache
[INFO] 2022-10-07 15:53:07.241 +0000 - The current execute mode isn't develop mode, will clear the task execute file: /opt/ds_base_dir/exec/process/7120503728992/7133023937376_2/25/29
[INFO] 2022-10-07 15:53:07.242 +0000 - Success clear the task execute file: /opt/ds_base_dir/exec/process/7120503728992/7133023937376_2/25/29
[INFO] 2022-10-07 15:53:07.879 +0000 - -> 2022-10-07 23:53:06,923 WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
Exception in thread "main" org.apache.spark.SparkException: No main class set in JAR; please specify one with --class.
at org.apache.spark.deploy.SparkSubmit.error(SparkSubmit.scala:972)
at org.apache.spark.deploy.SparkSubmit.prepareSubmitEnvironment(SparkSubmit.scala:492)
at org.apache.spark.deploy.SparkSubmit.org$apache$spark$deploy$SparkSubmit$$runMain(SparkSubmit.scala:898)
at org.apache.spark.deploy.SparkSubmit.doRunMain$1(SparkSubmit.scala:180)
at org.apache.spark.deploy.SparkSubmit.submit(SparkSubmit.scala:203)
at org.apache.spark.deploy.SparkSubmit.doSubmit(SparkSubmit.scala:90)
at org.apache.spark.deploy.SparkSubmit$$anon$2.doSubmit(SparkSubmit.scala:1043)
at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:1052)
at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)
[INFO] 2022-10-07 15:53:07.881 +0000 - FINALIZE_SESSION
### What you expected to happen
[Data Quality] No main class set in JAR
### How to reproduce
[Data Quality] No main class set in JAR
### Anything else
_No response_
### Version
3.1.x
### 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/12257 | https://github.com/apache/dolphinscheduler/pull/13360 | 366f999167feb5da65b86b48a010b754572857ef | e39bf59b4b76f7f163e398695d901d5fe729a9da | "2022-10-07T16:02:23Z" | java | "2023-01-14T06:50:50Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,254 | ["dolphinscheduler-registry/dolphinscheduler-registry-plugins/dolphinscheduler-registry-mysql/src/main/resources/mysql_registry_init.sql"] | [Bug] [Registry] Field named data length is too short in the table named t_ds_mysql_registry_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
The value of the field named data is a json string that is longer than varchar(200).
Here is an example.
`{"startupTime":1665140265483,"reportTime":1665143024545,"cpuUsage":0.02,"memoryUsage":0.47,"loadAverage":-1.0,"availablePhysicalMemorySize":16.92,"maxCpuloadAvg":24.0,"reservedMemory":0.3,"diskAvailable":216.79,"serverStatus":0,"processId":3884,"workerHostWeight":100,"workerWaitingTaskCount":0,"workerExecThreadCount":100}`
### What you expected to happen
Normal use mysql registry.
### How to reproduce
Use mysql registry.
### Anything else
_No response_
### Version
3.1.x
### 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/12254 | https://github.com/apache/dolphinscheduler/pull/12256 | 06876978698803045205a818ac65283219b32571 | bd7e7611363a1bd0ea53162ac15f6ca96f0ee88c | "2022-10-07T14:48:23Z" | java | "2022-10-08T01:47:04Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,252 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/utils/DependentDateUtils.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/utils/DependentUtils.java"] | [Bug] [Task] dependent task can not predicate the status of the corresponding task 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




Here I have 2 workflows, workflow 01 is a simple http task, workflow 02 only contains a dependent task, which depends on the workflow01, the condition is "thisMonthBegin"
After the workflow ran successfully(on 1st Oct. I changed the date of system manually), the workflow 01 should also have ran successfully(on any day of Oct. ideally), but it failed (as the last screenshot)
Deploy mode: standalone
Metadata storage: MySQL
Version: 3.1.0
OS: CentOS7 on vmware
### What you expected to happen
the workflow 02 should run successfully
### How to reproduce
run a workflow on 1st of any month, then run another workflow which has a denpendent task that depends the former workflow and set condition with "thisMonthBegin", then run the latter workflow
### Anything else
log of the workflow 02:
```
[LOG-PATH]: /tmp/apache-dolphinscheduler-3.1.0-bin/standalone-server/logs/20221001/7061320298016_4-13-13.log, [HOST]: Host{address='192.168.27.3:5678', ip='192.168.27.3', port=5678}
[INFO] 2022-10-01 11:22:29.646 +0800 - Dependent task submit success
[INFO] 2022-10-01 11:22:29.754 +0800 - Add sub dependent check tasks, dependent relation: AND
[INFO] 2022-10-01 11:22:29.754 +0800 - Add dependent task: projectName: test-project, workflowName: 工作流01, taskName: ALL, dependentKey: 7061314418592-0-month-thisMonthBegin
[INFO] 2022-10-01 11:22:29.755 +0800 - Success initialize dependent task parameters, the dependent data is: Sat Oct 01 11:22:29 CST 2022
[INFO] 2022-10-01 11:22:30.940 +0800 - dependent item complete, dependentKey: 7061314418592-0-month-thisMonthBegin, result: FAILED, dependentDate: Sat Oct 01 11:22:29 CST 2022
[INFO] 2022-10-01 11:22:30.941 +0800 - Dependent task completed, dependent result: FAILED
```
### Version
3.1.x
### 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/12252 | https://github.com/apache/dolphinscheduler/pull/12253 | 97edc7d6523e94ef063aed663c793592ea70d9ff | 1e1103404967763002031d7abd84a5684497b284 | "2022-10-05T06:59:32Z" | java | "2022-10-19T02:47:08Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,231 | ["dolphinscheduler-scheduler-plugin/dolphinscheduler-scheduler-quartz/src/main/java/org/apache/dolphinscheduler/scheduler/quartz/QuartzScheduler.java"] | [Bug] [service] Some scheduled tasks are not triggered on 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
数仓同学凌晨报告昨日新增任务未按时触发,问题非常严重,严重影响生产,经排查quartz插件默认参数及cronTrigger对象初始化参数在调度平台同一时刻触发大量任务时会导致调度任务超过触发等待阈值从而导致任务未触发。首先默认参数为org.quartz.threadPool.threadCount = 25、org.quartz.jobStore.misfireThreshold = 60000,cronTrigger错失触发处理策略为MISFIRE_INSTRUCTION_DO_NOTHING,即直接抛弃该定时任务。触发任务丢失的条件为同一时刻同时调度大量任务,数仓同学某一时刻批量提交近4000任务(线上2个master)。在调大org.quartz.threadPool.threadCount参数和增加master个数后60s内处理的任务数并没有较大变化(经查看quartz源码,其使用数据库悲观锁来保证并发安全)。因此建议cronTrigger错失触发的处理策略改为直接触发策略(保证系统在处理不过来时任务不丢失,可延迟执行),即处理misfire api由withMisfireHandlingInstructionDoNothing改为withMisfireHandlingInstructionFireAndProceed。
In the early morning, the co-worker from data warehouse reported that the newly added tasks were not triggered on time. The problem was very serious and seriously affected production. After investigation, the default parameters of the quartz plugin and the initialization parameters of the cronTrigger object will cause the scheduling tasks to exceed the trigger waiting threshold when a large number of tasks are triggered at the same time on the scheduling platform. Causes the task not to trigger. First, the default parameters are org.quartz.threadPool.threadCount = 25, org.quartz.jobStore.misfireThreshold = 60000, and the cronTrigger miss trigger processing strategy is MISFIRE_INSTRUCTION_DO_NOTHING, that is, the timing task is directly abandoned. The condition for triggering the loss of tasks is to schedule a large number of tasks at the same time, and the co-worker from data warehouse submit nearly 4,000 tasks in batches (2 online masters) at a certain time. After increasing the org.quartz.threadPool.threadCount parameter and increasing the number of masters, the number of tasks processed within 60s does not change significantly (after viewing the quartz source code, it uses database pessimistic locks to ensure concurrency safety). Therefore, it is recommended that the processing strategy of cronTrigger's missed trigger be changed to a direct trigger strategy (to ensure that the task is not lost when the system cannot handle it, and the execution can be delayed), that is, the processing of misfire api is changed from withMisfireHandlingInstructionDoNothing to withMisfireHandlingInstructionFireAndProceed.

### What you expected to happen
Change a default strategy, at least ensure that the task is not lost.
### How to reproduce
A large number of scheduling tasks are triggered at the same time.
### Anything else
Every version of the project has this probelm.
### Version
3.0.x
### 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/12231 | https://github.com/apache/dolphinscheduler/pull/12233 | c8bd106604ea4136c91f5592265b270cb9e7e092 | d9ac1fa0f70322de4985285231058f6a2e353325 | "2022-09-30T07:20:00Z" | java | "2022-10-10T06:01:02Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,199 | ["docs/docs/en/guide/installation/pseudo-cluster.md", "docs/docs/en/guide/installation/standalone.md", "docs/docs/zh/guide/installation/pseudo-cluster.md", "docs/docs/zh/guide/installation/standalone.md"] | [Doc][Cluster] Should add chmod -R 755 after unzip ds tar.gz | ### 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
After i unzip the ds 3.0.1 tar.gz, the permission is 700, so other tenent do not have permission


### Documentation Links
https://dolphinscheduler.apache.org/zh-cn/docs/latest/user_doc/guide/installation/pseudo-cluster.html
### 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/12199 | https://github.com/apache/dolphinscheduler/pull/12210 | 60c43d5d326c92be2a030dfb4c65f1c7a0b10be3 | 7beff83e9f0d187fc0f1e6f451b6acae5aea9f3a | "2022-09-28T13:55:53Z" | java | "2022-10-07T05:07:36Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,171 | ["dolphinscheduler-ui/src/locales/en_US/project.ts", "dolphinscheduler-ui/src/locales/zh_CN/project.ts", "dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-sidebar.tsx"] | [Bug] [UI] UI miss machine learning task group | ### 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="205" alt="image" src="https://user-images.githubusercontent.com/31528124/192555751-f6a5cf23-49a4-4778-89c8-f6a8ca029952.png">
<img width="239" alt="image" src="https://user-images.githubusercontent.com/31528124/192557522-ff77a1d0-f22e-49e7-81b4-f41079bd25bd.png">
### What you expected to happen
<img width="245" alt="image" src="https://user-images.githubusercontent.com/31528124/192555937-debc1c94-d6d9-4bb4-af3f-51384a424c84.png">
### How to reproduce
empty
### Anything else
empty
### 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/12171 | https://github.com/apache/dolphinscheduler/pull/12172 | 4973b30efb82d773369a3f93dec5cee6f48b6594 | 856083d5912dc53891c191cff0ca4ad2073814f0 | "2022-09-27T14:35:16Z" | java | "2022-09-28T10:30:52Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,170 | ["docs/docs/en/about/hardware.md", "docs/docs/zh/about/glossary.md", "docs/docs/zh/about/hardware.md"] | [Bug] [Worker] Different clocks will result in delayed execution of tasks | ### 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 the worker's clock early than master's clock, it will cause task delay.
For example:
Master: 12:00
Worker: 11:58
Then all task will delay `≈2min`.
Why?
Because `usedTime` will be a negative number. So `remainTime` > 0

### What you expected to happen
Task no delay.
Because there may indeed be different servers configured with different clock sources
### How to reproduce
Just make Worker server's clock early than Master
### Anything else
There is another problem here, what to do if the server exaggerates the time zone :question:
### 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/12170 | https://github.com/apache/dolphinscheduler/pull/12219 | 55004bebe032b7212892686d308adca2ac0e2723 | 1d0d26a416027b9e91d1a21092bb5b4406a757b2 | "2022-09-27T13:54:20Z" | java | "2022-10-17T02:42:51Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,154 | ["dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskDispatchProcessor.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskExecuteResultAckProcessor.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskRejectAckProcessor.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskSavePointProcessor.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/runner/WorkerManagerThread.java"] | [Improvement][worker] Optimize the log printing of the worker module according to the log specification. | ### 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
The log printing in the worker module has been optimized in [#10516](https://github.com/apache/dolphinscheduler/pull/10516) by using MDC, and there are still some other non-standard parts.
According to the log specification in pr [#11484](https://github.com/apache/dolphinscheduler/pull/11484), I will improve the log printing of the worker module.
### 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/12154 | https://github.com/apache/dolphinscheduler/pull/12183 | e27c79974d93d0d4181a0f5dbe45159084e224d3 | 962fa6dbd51c232b3b45243b408c5f19c1913879 | "2022-09-26T18:24:12Z" | java | "2022-09-29T08:01:29Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,145 | ["dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskDispatchProcessor.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskExecuteResultAckProcessor.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskRejectAckProcessor.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskSavePointProcessor.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/runner/WorkerManagerThread.java"] | [Bug] [server] NPE when depend node is forbidden | ### 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 process instance keep in runing state. and from the master node I can see the error log :
```
[INFO] 2022-09-26 15:07:56.915 org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread:[1276] - add task to stand by list, task name:写入数据, task id:0, task code:6963664984578
[ERROR] 2022-09-26 15:07:56.923 org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread:[1420] - submit standby task error
java.lang.NullPointerException: null
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.setIndirectDepList(WorkflowExecuteThread.java:981)
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.setIndirectDepList(WorkflowExecuteThread.java:984)
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.isTaskDepsComplete(WorkflowExecuteThread.java:948)
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.getDependResultForTask(WorkflowExecuteThread.java:1243)
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.submitStandByTask(WorkflowExecuteThread.java:1394)
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.submitPostNode(WorkflowExecuteThread.java:930)
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.taskFinished(WorkflowExecuteThread.java:409)
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.taskStateChangeHandler(WorkflowExecuteThread.java:362)
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.stateEventHandler(WorkflowExecuteThread.java:312)
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.handleEvents(WorkflowExecuteThread.java:260)
at org.apache.dolphinscheduler.server.master.runner.WorkflowExecuteThread.run(WorkflowExecuteThread.java:241)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:125)
at com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:57)
at com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:78)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
```
after remove the connection between the forbidden node and should run node , things goes well.

### What you expected to happen
no error should throw out
### How to reproduce
I also can't reproduce it.
### 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/12145 | https://github.com/apache/dolphinscheduler/pull/12183 | e27c79974d93d0d4181a0f5dbe45159084e224d3 | 962fa6dbd51c232b3b45243b408c5f19c1913879 | "2022-09-26T07:46:19Z" | java | "2022-09-29T08:01:29Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,128 | ["dolphinscheduler-ui/src/views/security/environment-manage/components/environment-modal.tsx", "dolphinscheduler-ui/src/views/security/environment-manage/components/use-modal.ts"] | [Bug] [FE] cannot insert space in environment config | ### 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 create a environment config, i cannot insert space inside the form.
### What you expected to happen
i can insert space in environment config
### How to reproduce
type space in the environment config
### Anything else
please check other places whether have this issue
### 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/12128 | https://github.com/apache/dolphinscheduler/pull/12147 | cc82206c33cc60cd71ebfe7b327e8cc4110bd15d | 87490a34cc0dbfd479fda6bcb1e335e7faf3ce67 | "2022-09-24T06:38:27Z" | java | "2022-09-26T11:06:56Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,124 | ["dolphinscheduler-master/pom.xml", "dolphinscheduler-master/src/test/java/org/apache/dolphinscheduler/server/master/SubProcessTaskTest.java", "dolphinscheduler-master/src/test/java/org/apache/dolphinscheduler/server/master/processor/CacheProcessorTest.java", "dolphinscheduler-master/src/test/java/org/apache/dolphinscheduler/server/master/processor/TaskAckProcessorTest.java", "dolphinscheduler-master/src/test/java/org/apache/dolphinscheduler/server/master/processor/TaskKillResponseProcessorTest.java", "dolphinscheduler-master/src/test/java/org/apache/dolphinscheduler/server/master/registry/MasterRegistryClientTest.java", "dolphinscheduler-master/src/test/java/org/apache/dolphinscheduler/server/master/runner/MasterTaskExecThreadTest.java", "dolphinscheduler-master/src/test/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteRunnableTest.java", "dolphinscheduler-master/src/test/java/org/apache/dolphinscheduler/server/master/service/FailoverServiceTest.java"] | [Improvement][Test] Remove `Powermock` in `dolphinscheduler-master` | ### 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
- Remove `Powermock` in `dolphinscheduler-master`
- This is a sub-task of #11405
### 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/12124 | https://github.com/apache/dolphinscheduler/pull/12143 | 4269fa7ea7a83c7f5d7fd7d4db0d4a069eb4e9fc | cc82206c33cc60cd71ebfe7b327e8cc4110bd15d | "2022-09-23T09:10:12Z" | java | "2022-09-26T09:02:14Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,113 | ["dolphinscheduler-api/pom.xml", "dolphinscheduler-bom/pom.xml", "dolphinscheduler-common/pom.xml", "dolphinscheduler-datasource-plugin/dolphinscheduler-datasource-api/pom.xml", "dolphinscheduler-datasource-plugin/dolphinscheduler-datasource-hive/pom.xml", "dolphinscheduler-dist/release-docs/LICENSE", "dolphinscheduler-dist/release-docs/licenses/LICENSE-hbase-noop-htrace.txt", "dolphinscheduler-master/pom.xml", "dolphinscheduler-server/pom.xml", "tools/dependencies/known-dependencies.txt"] | [Bug] [HDFS] enable HDFS cannot find class htrace-core | ### 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
enable HDFS will throw ClassNotFoundException: htrace-core
version 3.1.0
<img width="2550" alt="c9b353dd8657fd9940fe30127cac1bf" src="https://user-images.githubusercontent.com/36755957/191775614-eed584af-5cc4-4710-9a07-ca83d9e04df6.png">
<img width="995" alt="6a3b56af9f18d7ea97537cc3cd3b75f" src="https://user-images.githubusercontent.com/36755957/191775704-7b239624-c02f-405e-b55b-17d3e1d88bad.png">
### What you expected to happen
HDFS works fine
### How to reproduce
change HDFS settings, then will throw exception
### Anything else
will also check dev whether have this problem
### 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/12113 | https://github.com/apache/dolphinscheduler/pull/12126 | e6832220c35680aedae98d5ea88758b5d380bdfa | cf5a8894e2ac7b73b59544737a0380230dbf30ac | "2022-09-22T14:35:23Z" | java | "2022-09-26T05:49:08Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,111 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-pytorch/src/main/java/org/apache/dolphinscheduler/plugin/task/pytorch/PythonEnvManager.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-pytorch/src/test/java/org/apache/dolphinscheduler/plugin/task/pytorch/PytorchTaskTest.java"] | [Bug] [Pytorch Task Plugin] Python home conflict when create conda env | ### 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 PYTHON_HOME, and then Pytorch task plugin create conda env can not set python home correctly
### What you expected to happen
empty
### How to reproduce
empty
### Anything else
empty
### 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/12111 | https://github.com/apache/dolphinscheduler/pull/12112 | e11e129cdaa05b3324f06072ea419a42b6d1cd18 | 6eb1eb722af06b94027994b2ef8955e84fd97d7f | "2022-09-22T11:07:59Z" | java | "2022-09-23T01:40:18Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,088 | ["deploy/kubernetes/dolphinscheduler/templates/statefulset-dolphinscheduler-worker.yaml"] | [Bug] [Worker] alert email in sql task in K8S | ### 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
dolphinscheduelr deploy in k8s.
1. Create a sql task in workflow definition
- Datasource types: MYSQL
- SQL_TYPE: Query
- Send Email: Enable
2. After start the workflow definition, no email receive, no ERROR in task log.
### What you expected to happen
receive the Email
### How to reproduce
1. Create a sql task in workflow definition
- Datasource types: MYSQL
- SQL_TYPE: Query
- Send Email: Enable
2. After start the workflow definition, no email receive, no ERROR in task log.
find ERROR in log of the worker server
```
[WARN] 2022-09-21 13:15:48.196 +0800 org.apache.dolphinscheduler.remote.NettyRemotingClient:[368] - [WorkflowInstance-3179][TaskInstance-30336] - connect to Host{address='localhost:50052', ip='localhost', port=50052} error
io.netty.channel.AbstractChannel$AnnotatedConnectException: finishConnect(..) failed: Connection refused: localhost/127.0.0.1:50052
Caused by: java.net.ConnectException: finishConnect(..) failed: Connection refused
at io.netty.channel.unix.Errors.throwConnectException(Errors.java:124)
at io.netty.channel.unix.Socket.finishConnect(Socket.java:251)
at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.doFinishConnect(AbstractEpollChannel.java:673)
at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.finishConnect(AbstractEpollChannel.java:650)
at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.epollOutReady(AbstractEpollChannel.java:530)
at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:465)
at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:378)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at java.lang.Thread.run(Thread.java:750)
[ERROR] 2022-09-21 13:15:48.196 +0800 org.apache.dolphinscheduler.service.alert.AlertClientService:[116] - [WorkflowInstance-3179][TaskInstance-30336] - sync alert send error
org.apache.dolphinscheduler.remote.exceptions.RemotingException: connect to : Host{address='localhost:50052', ip='localhost', port=50052} fail
at org.apache.dolphinscheduler.remote.NettyRemotingClient.sendSync(NettyRemotingClient.java:257)
at org.apache.dolphinscheduler.service.alert.AlertClientService.sendAlert(AlertClientService.java:111)
at org.apache.dolphinscheduler.service.alert.AlertClientService.sendAlert(AlertClientService.java:93)
at org.apache.dolphinscheduler.server.worker.runner.TaskExecuteThread.sendAlert(TaskExecuteThread.java:240)
at org.apache
```
### Anything else
_No response_
### Version
3.0.0
### 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/12088 | https://github.com/apache/dolphinscheduler/pull/12369 | 7b44612f283702f2a25a4d36ffdda015a812a321 | 1e792186d0b1e660dc2299b46827a46c59d393f6 | "2022-09-21T09:22:23Z" | java | "2022-10-14T08:19:57Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,082 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-rules.ts"] | [Improvement][data_quality] [ui] | ### 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
dolphinscheduler version :3.0.0
I found data_quality is inconvenient to use :
<img width="602" alt="image" src="https://user-images.githubusercontent.com/72915398/191444182-f60a72fa-6dc7-4434-b9ac-e40e9c2af9b1.png">
<img width="671" alt="image" src="https://user-images.githubusercontent.com/72915398/191444783-7c2c7ab0-224b-4bd8-bfcb-493bccdc6e4c.png">
I have to find target table from hundreds of tables with sliding roller,this is an inefficient thing.
I wish to enter table name to search target table
### 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/12082 | https://github.com/apache/dolphinscheduler/pull/12099 | b1b57c8fb710e6641443383b305e909d72eb1141 | e11e129cdaa05b3324f06072ea419a42b6d1cd18 | "2022-09-21T07:46:38Z" | java | "2022-09-22T12:43:34Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,081 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java"] | [Bug] [View workflow instance] Error copying workflow instance. | ### 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
Error copying workflow instance
### What you expected to happen
Copying workflow succeeded
### How to reproduce
Error copying workflow instance
### Anything else

### Version
3.1.0-prepare
### 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/12081 | https://github.com/apache/dolphinscheduler/pull/12092 | 9b3b4e22b42eb976a997f36310a26629142a5315 | fba5a8eaa0945f399733275341dfdcec11ab6b3d | "2022-09-21T07:41:22Z" | java | "2022-09-22T01:52:32Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,078 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java"] | [Bug] [dolphinscheduler-api][3.1.0] workflow import 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
<img width="1130" alt="image" src="https://user-images.githubusercontent.com/31528124/191407912-63cf53a0-76c4-4b0c-8380-b6018c746bec.png">
### What you expected to happen
empty
### How to reproduce
1. create a shell workflow
2. export the workflow
3. import the workflow to another project
### Anything else
_No response_
### Version
branch:3.1.0-prepare
### 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/12078 | https://github.com/apache/dolphinscheduler/pull/12096 | cc492c3e13fa8de96706d4360ee6f8d628639200 | 6e03a7e5576de795ae1cb66a7ba0fdb40979c95b | "2022-09-21T03:31:22Z" | java | "2022-09-22T04:12:43Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,061 | ["dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/DataSourceControllerTest.java"] | [Improvement][UT] Improvement Query dataSource UT | ### 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
After pulling the latest code, ut failed to query the data source.
### 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/12061 | https://github.com/apache/dolphinscheduler/pull/12062 | 649015bfff69e3922fb9b1059784b3ea2e70eb69 | 955e8ebe0f2389d6bc44dcbc12e02c1b307690c4 | "2022-09-20T06:01:01Z" | java | "2022-09-20T07:46:29Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,057 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-sql/src/main/java/org/apache/dolphinscheduler/plugin/task/sql/SqlTask.java"] | [Bug] [task-plugin] When the sql query result is empty, the email fails to send the attachment, and an exception will be reported | ### 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 sql query result is empty, dolphinscheduler-alert.log screenshot is as follows:
<img width="1365" alt="image" src="https://user-images.githubusercontent.com/35831367/191156893-f3d9e8c0-317b-4152-93a0-dcef8618dfeb.png">
Email can't be sent
<img width="1362" alt="image" src="https://user-images.githubusercontent.com/35831367/191157074-be76e4ea-091b-4cb1-a2f0-2233b386f028.png">
### What you expected to happen
I think we should send an empty attachment and write the table structure and empty results of the query to the attachment
such as
<img width="424" alt="image" src="https://user-images.githubusercontent.com/35831367/191159120-ddcbc239-7a41-4a95-b8aa-f9dc26a1b6d6.png">
### How to reproduce
..
### Anything else
_No response_
### Version
3.0.0
### 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/12057 | https://github.com/apache/dolphinscheduler/pull/12059 | 08a4c7981fcfdbdf2f363bc0b790d92077c94441 | 9b3b4e22b42eb976a997f36310a26629142a5315 | "2022-09-20T03:12:23Z" | java | "2022-09-22T01:39:02Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,055 | ["dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java"] | [Bug] [Master] Construct processInstance may NPE when master handling command | ### 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
Construct processInstance may NPE when master handling command
### What you expected to happen
commond content changed
### How to reproduce
commond content changed
### 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/12055 | https://github.com/apache/dolphinscheduler/pull/12056 | b95db4413044e48f97a6e8cf15c5d7667ddf5619 | 6466cc7c41bc32596499b023ed483387cb32d02a | "2022-09-20T02:50:48Z" | java | "2022-09-27T01:13:48Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,032 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-namespace.ts"] | [Bug] [Task] K8S task select namespace without cluster | ### 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
show namespace with cluster
### How to reproduce
add k8s task and select namespaces.
### 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/12032 | https://github.com/apache/dolphinscheduler/pull/12074 | ed1d1e885622f2fe45957998d475b7b6dcfb6328 | 7d80ea34ac0dd60dcae3e7f37c7ce659b56cdce9 | "2022-09-19T01:16:46Z" | java | "2022-09-21T02:05:15Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,029 | ["dolphinscheduler-bom/pom.xml", "dolphinscheduler-dist/release-docs/LICENSE", "tools/dependencies/known-dependencies.txt"] | [Dependencies] upgrade to snakeyaml 1.32 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
another snakeyaml release v1.32 to fix https://github.com/advisories/GHSA-9w3m-gqgf-c4p9
### What you expected to happen
n/a
### How to reproduce
n/a
### 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/12029 | https://github.com/apache/dolphinscheduler/pull/12726 | 454f1303a099736663eed62e327229a05573aacf | 1f23d296988850cfeef17325cdfddeadc6303403 | "2022-09-19T00:33:20Z" | java | "2022-11-11T05:33:04Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,000 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/registry/ServerNodeManager.java"] | [Bug] [Master] Cannot remove the WorkerGroup from the master service. | ### 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
cannot delete the WorkerGroup from the Master service.
When try to repreduce #11964 , i create a worker group named `app01`, then config the a shell task, and save it and run it.

Then delete this `app01` worker group. And re-run this process instance. It still can running and no any warn and error.
After i check the source code, i found that the Master service just will keep add the worker group, never remove the deleted worker group. If user update or delete the worker group from the UI, these history records still will keep in the memory and task affect.
`org.apache.dolphinscheduler.server.master.registry.ServerNodeManager`

### What you expected to happen
If cannot match the worker group, this task should not be dispatch and running.
### How to reproduce
Step 1. Add a Worker Group named `app01`
Step 2. Add a shell task, and the config the Worker group to `app01`
Step 3. Run this workflow.
Step 4. Delete the `app01` worker group.
Step 5. Re-run this process instance.
### 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/12000 | https://github.com/apache/dolphinscheduler/pull/12050 | 064224696fd85a31fc8db1818bb3ae1f29e9dd4b | ada7cf71d5c70174c7d7c6608f4f60896db5d6b9 | "2022-09-16T11:57:52Z" | java | "2022-09-24T10:57:20Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,943 | ["dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/index.rst", "dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/openmldb.rst", "dolphinscheduler-python/pydolphinscheduler/examples/yaml_define/OpenMLDB.yaml", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/constants.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/examples/task_openmldb_example.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/openmldb.py", "dolphinscheduler-python/pydolphinscheduler/tests/tasks/test_openmldb.py"] | [Feature][PyDolphinScheduler] Support OpenMLDB task in pyds | ### 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
part of https://github.com/apache/dolphinscheduler/issues/11906
### 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/11943 | https://github.com/apache/dolphinscheduler/pull/11944 | 5b384f3fab8bc8fbe61cbd3bcb687efd4f34b5a1 | e50a32d9ccee57e4b56f63b9bee2c4fd888c0c32 | "2022-09-15T01:49:19Z" | java | "2022-09-17T07:24:17Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,928 | ["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"] | [Bug] [Dependent] Start process instance error when enable dependent mode | ### 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 process instance error when enable dependent mode,
I find in `dependentCommand = (Command) BeanUtils.cloneBean(command)` the command id not modified due to Duplicate entry 'xxx' for key 't_ds_command.PRIMARY', I suspect it relation https://github.com/apache/dolphinscheduler/pull/11765
### What you expected to happen
Start process success.
### How to reproduce
Use dev code, create two process, one parent, one child dependent parent and start parent process use dependent 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/11928 | https://github.com/apache/dolphinscheduler/pull/11929 | e938fdbe968ac88f184175f3ef4d0b2a7836c3ea | bd0fa79e377853eb3d5e92af87dabd70130ec6a5 | "2022-09-14T08:23:40Z" | java | "2022-09-15T02:00:38Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,924 | ["dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/index.rst", "dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/pytorch.rst", "dolphinscheduler-python/pydolphinscheduler/examples/yaml_define/Pytorch.yaml", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/constants.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/examples/task_pytorch_example.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/pytorch.py", "dolphinscheduler-python/pydolphinscheduler/tests/tasks/test_pytorch.py"] | [Feature][PyDolphinScheduler] Support Pytorch task in pyds | ### 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
part of https://github.com/apache/dolphinscheduler/issues/11906
### 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/11924 | https://github.com/apache/dolphinscheduler/pull/11975 | 864a90820de8b8470714574dd506f757a73db874 | 5202e5cfc6a487a7e0897f52821d9bcf73e4cf82 | "2022-09-14T07:23:23Z" | java | "2022-09-16T12:24:38Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,923 | ["dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/index.rst", "dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/mlflow.rst", "dolphinscheduler-python/pydolphinscheduler/examples/yaml_define/mlflow.yaml", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/constants.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/examples/task_mlflow_example.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py", "dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/mlflow.py", "dolphinscheduler-python/pydolphinscheduler/tests/tasks/test_mlflow.py"] | [Feature][PyDolphinScheduler] Support MLflow task in pyds | ### 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
part of https://github.com/apache/dolphinscheduler/issues/11906
### 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/11923 | https://github.com/apache/dolphinscheduler/pull/11962 | c24ad9adb69cfaeb98b8073415ec18bd115519dd | ad683c3c428876916d9550111fc9bbb77afd9e9f | "2022-09-14T07:22:53Z" | java | "2022-09-18T08:28:18Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,921 | ["dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/sagemaker.rst", "dolphinscheduler-python/pydolphinscheduler/examples/yaml_define/Sagemaker.yaml", "dolphinscheduler-python/pydolphinscheduler/examples/yaml_define/example_sagemaker_params.json"] | [Feature][PyDolphinScheduler] Support SageMaker task in pyds | ### 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
part of https://github.com/apache/dolphinscheduler/issues/11906
### 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/11921 | https://github.com/apache/dolphinscheduler/pull/11925 | 5202e5cfc6a487a7e0897f52821d9bcf73e4cf82 | e05f14ba2310342f3053558fc8fb73307772651e | "2022-09-14T07:21:21Z" | java | "2022-09-17T02:34:06Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,913 | ["dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-dingtalk/src/main/java/org/apache/dolphinscheduler/plugin/alert/dingtalk/DingTalkAlertChannelFactory.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-email/src/main/java/org/apache/dolphinscheduler/plugin/alert/email/EmailAlertChannelFactory.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-email/src/test/java/org/apache/dolphinscheduler/plugin/alert/email/EmailAlertChannelTest.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-feishu/src/main/java/org/apache/dolphinscheduler/plugin/alert/feishu/FeiShuAlertChannelFactory.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-telegram/src/main/java/org/apache/dolphinscheduler/plugin/alert/telegram/TelegramAlertChannelFactory.java", "dolphinscheduler-spi/src/main/java/org/apache/dolphinscheduler/spi/params/PasswordParam.java", "dolphinscheduler-spi/src/test/java/org/apache/dolphinscheduler/spi/params/PluginParamsTransferTest.java"] | [Improvement] [Alert] should mask the password of email password | ### 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 alert instance, email password display in plaintext, should mask password

### What you expected to happen
mask the email password when create or update alert instance
### How to reproduce
create or update new alert instance
### Anything else
_No response_
### Version
3.0.0
### 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/11913 | https://github.com/apache/dolphinscheduler/pull/14415 | 7a24be06724094c17381effc0baeae1dd018f2e6 | 50195c46aa35033590c474390b9882bb8e44525e | "2022-09-13T12:27:48Z" | java | "2023-06-28T06:10:51Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,904 | ["docs/docs/en/guide/task/mlflow.md", "docs/docs/zh/guide/task/mlflow.md"] | [Doc][Task Plugin] Fix MLflow task plugin doc | ### 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
- Fix the list format
- remove the todo list
### Documentation Links
https://dolphinscheduler.apache.org/en-us/docs/dev/user_doc/guide/task/mlflow.html
### 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/11904 | https://github.com/apache/dolphinscheduler/pull/11905 | ca22c083b3f91436c334525536dc58519f13d018 | 892d8672704fc16db9e4416ac258f5c97d18758d | "2022-09-13T07:07:35Z" | java | "2022-09-13T08:20:03Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,880 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-hive-cli.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/tasks/use-hive-cli.ts"] | [Improvement][Hivecli] Improve the UI of HiveCli | ### 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
Improve the UI of HiveCli
### 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/11880 | https://github.com/apache/dolphinscheduler/pull/11882 | 1a4d7a842663574752bcabc222d2d0d778089fb7 | db9db944a6030bc4c8bd4366a5f2b6a13404ebae | "2022-09-09T07:53:15Z" | java | "2022-09-30T01:56:35Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,869 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/model/MasterHeartBeat.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/model/WorkerHeartBeat.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/task/MasterHeartBeatTask.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/task/WorkerHeartBeatTask.java"] | [Bug] [Monitor] MemoryUsage and DiskAvailable not show on monitor page (Both Worker and Master) | ### 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
Disk available and Memory usage not corret

### What you expected to happen
Disk available and Memory can show the real value
### How to reproduce
* Start standalone server and ui
* login
* click monitor tab (Worker and Master)
### 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/11869 | https://github.com/apache/dolphinscheduler/pull/11870 | c3a8dd5ca7cd2fa9bf97d745ad176a6f683c6ce3 | 3ca9680b20a4e5b3c0aff65abbcf4faf3379cd3f | "2022-09-09T02:25:11Z" | java | "2022-09-11T11:11:03Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,854 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/dto/TaskCountDto.java"] | [Bug] [dolphinscheduler-api] Data Analysis Service API responds with jackson deserialization 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
Remote call DataAnalysisService API:
1. `/dolphinscheduler/projects/analysis/task-state-count`
2. `/dolphinscheduler/projects/analysis/process-state-count`
after then, deserialize to `org.apache.dolphinscheduler.api.dto.TaskCountDto`
```java
import org.apache.dolphinscheduler.common.utils.JSONUtils;
@Data
public class QueryTaskStatesResponse {
protected Map<String, String> headers;
protected Result<T> body;
}
...
final Map<String, ?> res = callApi(xxx);
JSONUtils.parseObject(JSONUtils.toJsonString(values), QueryTaskStatesResponse.class);
...
```
then raise exception:
```java
com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of `org.apache.dolphinscheduler.api.dto.TaskStateCount` (no Creators, like default constructor, exist): cannot deserialize from Object value (no delegate- or property-based Creator)
at [Source: (String)"{"headers":{"date":"Thu, 08 Sep 2022 06:46:35 GMT","transfer-encoding":"chunked","vary":"Origin;Access-Control-Request-Method;Access-Control-Request-Headers;Accept-Encoding, User-Agent","content-type":"application/json"},"body":{"code":0,"msg":"success","data":{"totalCount":2,"taskCountDtos":[{"count":0,"taskStateType":"SUBMITTED_SUCCESS"},{"count":2,"taskStateType":"RUNNING_EXECUTION"},{"count":0,"taskStateType":"READY_PAUSE"},{"count":0,"taskStateType":"PAUSE"},{"count":0,"taskStateType":"READ"[truncated 392 chars]; line: 1, column: 296] (through reference chain: com.alibaba.teasdk.model.analysis.QueryProcessInstanceStatesResponse["body"]->org.apache.dolphinscheduler.api.utils.Result["data"]->org.apache.dolphinscheduler.api.dto.TaskCountDto["taskCountDtos"]->java.util.ArrayList[0])
at com.fasterxml.jackson.databind.exc.InvalidDefinitionException.from(InvalidDefinitionException.java:67) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.DeserializationContext.reportBadDefinition(DeserializationContext.java:1904) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.DatabindContext.reportBadDefinition(DatabindContext.java:400) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.DeserializationContext.handleMissingInstantiator(DeserializationContext.java:1349) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1415) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:351) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:184) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer._deserializeFromArray(CollectionDeserializer.java:355) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:244) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:28) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:129) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:313) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:176) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:129) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:313) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:176) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:129) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:313) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:176) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:323) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4674) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3629) ~[jackson-databind-2.13.3.jar:2.13.3]
at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3597) ~[jackson-databind-2.13.3.jar:2.13.3]
at org.apache.dolphinscheduler.common.utils.JSONUtils.parseObject(JSONUtils.java:127) ~[dolphinscheduler-common-2.0.6-SNAPSHOT.jar:2.0.6-SNAPSHOT]
at com.alibaba.teasdk.Client.toResponse(Client.java:227) [classes/:na]
at com.alibaba.teasdk.Client.doRequest(Client.java:78) [classes/:na]
at com.alibaba.teasdk.Client.call(Client.java:39) [classes/:na]
at com.alibaba.teasdk.ApplicationTests.testAnalysis(ApplicationTests.java:325) [test-classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_321]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_321]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_321]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_321]
at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:725) [junit-platform-commons-1.8.2.jar:1.8.2]
at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60) [junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131) [junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:149) [junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:140) [junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:84) [junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.execution.ExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(ExecutableInvoker.java:115) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.execution.ExecutableInvoker.lambda$invoke$0(ExecutableInvoker.java:105) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:104) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:98) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:214) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:210) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:135) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:66) ~[junit-jupiter-engine-5.8.2.jar:5.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at java.util.ArrayList.forEach(ArrayList.java:1259) ~[na:1.8.0_321]
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at java.util.ArrayList.forEach(ArrayList.java:1259) ~[na:1.8.0_321]
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) ~[junit-platform-engine-1.8.2.jar:1.8.2]
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107) ~[junit-platform-launcher-1.8.2.jar:1.8.2]
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88) ~[junit-platform-launcher-1.8.2.jar:1.8.2]
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54) ~[junit-platform-launcher-1.8.2.jar:1.8.2]
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67) ~[junit-platform-launcher-1.8.2.jar:1.8.2]
at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52) ~[junit-platform-launcher-1.8.2.jar:1.8.2]
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) ~[junit-platform-launcher-1.8.2.jar:1.8.2]
at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86) ~[junit-platform-launcher-1.8.2.jar:1.8.2]
at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86) ~[junit-platform-launcher-1.8.2.jar:1.8.2]
at org.junit.platform.launcher.core.SessionPerRequestLauncher.execute(SessionPerRequestLauncher.java:53) ~[junit-platform-launcher-1.8.2.jar:1.8.2]
at com.intellij.junit5.JUnit5IdeaTestRunner.startRunnerWithArgs(JUnit5IdeaTestRunner.java:71) ~[junit5-rt.jar:na]
at com.intellij.rt.junit.IdeaTestRunner$Repeater$1.execute(IdeaTestRunner.java:38) ~[junit-rt.jar:na]
at com.intellij.rt.execution.junit.TestsRepeater.repeat(TestsRepeater.java:11) ~[idea_rt.jar:na]
at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:35) ~[junit-rt.jar:na]
at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:235) ~[junit-rt.jar:na]
at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:54) ~[junit-rt.jar:na]
```
### What you expected to happen
Response deserializes correctly
### How to reproduce
`org.apache.dolphinscheduler.api.dto.TaskCountDto` and `org.apache.dolphinscheduler.api.dto.TaskStateCount` adds default constructor
### Anything else
_No response_
### Version
2.0.6
### 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/11854 | https://github.com/apache/dolphinscheduler/pull/11858 | 3ca9680b20a4e5b3c0aff65abbcf4faf3379cd3f | db46e4786aa0c5f5f16fac4e977a0570c8702fe1 | "2022-09-08T07:11:10Z" | java | "2022-09-11T11:12:03Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,838 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/event/TaskTimeoutStateEventHandler.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteRunnable.java"] | [Bug] [Master] WorkflowExecuteRunnable will face a 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
when we confige the `Timeout period` and `Failed retry interval` at the same time in Shell task. When shell task failed, it will submit a `TASK_STATE_CHANGE` TaskEvent, and then `TaskStateEventHandler` will call `WorkflowExecuteRunnable.taskFinished` and remove the _<taskInstanceCode,TaskProcessor>_ in `activeTaskProcessorMaps`

Then `StateWheelExecuteThread` will submit a `TASK_TIMEOUT` and a `TASK_RETRY` TaskEvent.
But `TaskTimeoutStateEventHandler` will query a TaskProcessor form `activeTaskProcessorMaps` to process the TIMEOUT, this will casue a NPE:

And `WorkflowExecuteRunnable` will not remove this TaskEvent if this taskEventHandler throw a Exception, so it keep loop, but it will no any update,just a infinite loop.

Besides, the `WorkflowExecuteThreadPool.executeEvent` will keep print the `The workflow has been executed by another thread` each 100ms, because event count > 0
So u can find the master log prints NPE and `The workflow has been executed by another thread` at the same time like crazy
This bug may cause #11796
But I think this needs to be discussed separately
### What you expected to happen
this process instance will stop caused by TIMEOUT, not keep a infinite loop, and show it's keep running.
### How to reproduce
just create a shell task like the following screenshot:

### 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/11838 | https://github.com/apache/dolphinscheduler/pull/11864 | dec6197a6788cef027dd9f58a7a4958622534065 | e938fdbe968ac88f184175f3ef4d0b2a7836c3ea | "2022-09-07T13:57:28Z" | java | "2022-09-15T01:46:30Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,830 | ["docs/docs/en/guide/task/sub-process.md", "docs/docs/zh/guide/task/sub-process.md"] | [Doc][subProcess] Documentation bug or improvement about subProcess | ### 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
child node is not task ,but workflow

### Documentation Links
_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/11830 | https://github.com/apache/dolphinscheduler/pull/11837 | 25b78a80037c4a7edb551dd04328276ebdc7efc1 | 070b8c2546541e3fc4ad294a825d46e58d86d77c | "2022-09-07T08:35:53Z" | java | "2022-09-13T02:05:59Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,821 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/HadoopUtils.java"] | [Bug] [Resource Center] HDFS can only use local mode, not cluster mode | ### 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
HDFS can only use local mode, not cluster mode
### What you expected to happen
running cluster mode successfully.
### How to reproduce
aboved.
### 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/11821 | https://github.com/apache/dolphinscheduler/pull/11823 | ea0b5acccb07474b5c4f0a08eecaa06c55f24d9e | ebcffb04aad9db8ec6df1105e4770b187088e701 | "2022-09-07T04:07:07Z" | java | "2022-09-07T08:40:43Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,816 | ["dolphinscheduler-python/pydolphinscheduler/docs/source/tutorial.rst"] | [Doc][Python] yaml_define examples link error | ### 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
<img width="840" alt="image" src="https://user-images.githubusercontent.com/31528124/188775938-58d2a691-f7d9-425f-a215-be188b46e902.png">
[examples/yaml_define](https://github.com/apache/dolphinscheduler/tree/py-yaml/dolphinscheduler-python/pydolphinscheduler/examples/yaml_define) error
### Documentation Links
https://dolphinscheduler.apache.org/python/dev/tutorial.html
### 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/11816 | https://github.com/apache/dolphinscheduler/pull/11817 | e20f17a7b72404bce3ce5c642668c428a5e768c0 | c41fa5a8b14706702ded7b790a484a457498586e | "2022-09-07T02:37:35Z" | java | "2022-09-09T02:33:17Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,815 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxUtils.java"] | [Bug] [Datax] error when ck is dtType and column names contain special characters | ### 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="1285" alt="image" src="https://user-images.githubusercontent.com/33984497/188775144-256ee91d-1a17-41be-b9c2-460454bf40e8.png">
<img width="1358" alt="image" src="https://user-images.githubusercontent.com/33984497/188775208-53077d96-356e-4032-bc9c-b0581320a14d.png">
### What you expected to happen
can explain special characters
### How to reproduce
fix the explain logic in ds
### 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/11815 | https://github.com/apache/dolphinscheduler/pull/11818 | 37325b4c3410c2fe2f025c16363ea0c3a157647e | e101a5cb2c1a273eb4f2b29230c769f69f698148 | "2022-09-07T02:33:35Z" | java | "2022-09-08T07:09:17Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,814 | ["docs/docs/en/guide/project/workflow-definition.md", "docs/docs/zh/guide/project/workflow-definition.md", "docs/img/new_ui/dev/project/workflow-execution-type.png"] | [Doc][Workflow] Add docs for workflow execution type | ### 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 we have no docs to explain what these four workflow execution types mean. It is necessary that we have some brief explanations for them in docs.
https://github.com/apache/dolphinscheduler/blob/7c0c1f4b78ffafec7f4afa8758d41b8fc8c9db8f/dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/ProcessExecutionTypeEnum.java#L24-L30
### Documentation Links
* https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/project/workflow-definition.html
### 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/11814 | https://github.com/apache/dolphinscheduler/pull/12121 | 82ddd72e4a2fae8d8926e5ff8ec35600d0483fbc | 064224696fd85a31fc8db1818bb3ae1f29e9dd4b | "2022-09-06T17:20:01Z" | java | "2022-09-24T01:59:02Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,802 | ["docs/docs/en/guide/resource/file-manage.md", "docs/docs/zh/guide/resource/file-manage.md", "docs/img/reupload_file_en.png"] | [Doc][Fille-Manage] Re upload file function does not exists in the version 3.0.0 | ### 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
Re upload file function does not exists in the version 3.0.0
### Documentation Links
https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/resource/file-manage.html
### 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/11802 | https://github.com/apache/dolphinscheduler/pull/11804 | 7c0c1f4b78ffafec7f4afa8758d41b8fc8c9db8f | f0db90f71d53045e44f50a11a240d2b68f45905d | "2022-09-06T08:22:09Z" | java | "2022-09-07T01:45:51Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,796 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/event/TaskTimeoutStateEventHandler.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteRunnable.java"] | [Bug] [WorkFlow] The failed retry configuration 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


### What you expected to happen
The configuration takes effect
### How to reproduce
1.Create a shell workflow
2.Configure the failure policy
3.Run the workflow and wait for it to fail
4.Observe if it retries
### 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/11796 | https://github.com/apache/dolphinscheduler/pull/11864 | dec6197a6788cef027dd9f58a7a4958622534065 | e938fdbe968ac88f184175f3ef4d0b2a7836c3ea | "2022-09-06T06:39:59Z" | java | "2022-09-15T01:46:30Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,787 | ["dolphinscheduler-ui/src/common/column-width-config.ts", "dolphinscheduler-ui/src/views/projects/workflow/definition/use-table.ts"] | [Bug] [UI] Workflow definition page text overlaps | ### 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 copy shows normal
### How to reproduce
Go to the workflow definition
### Anything else
_No response_
### Version
[dev](dev: ds3.1.0-prepare)
### 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/11787 | https://github.com/apache/dolphinscheduler/pull/11862 | c41fa5a8b14706702ded7b790a484a457498586e | 24957b5592459ec7a4009bfaee82f35883f4bddb | "2022-09-06T03:36:25Z" | java | "2022-09-09T02:35:23Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,784 | ["dolphinscheduler-dao/src/main/resources/sql/upgrade/3.0.0_schema/mysql/dolphinscheduler_ddl.sql"] | [Bug] [Mysql_init Script] The mysql init script is not available | ### 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. Refer to the official documentation
2. sh /opt/release/0906_ds/tools/bin/upgrade-schema.sh
3. An error occurred


### What you expected to happen
The init script works fine
### How to reproduce
1. Refer to the official documentation
2. sh /opt/release/0906_ds/tools/bin/upgrade-schema.sh
3. An error occurred
### Anything else
_No response_
### Version
dev: ds3.1.0-prepare
### 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/11784 | https://github.com/apache/dolphinscheduler/pull/11795 | 2eb8b9f7f0159b9119afe963193328d22cd746a7 | 7c0c1f4b78ffafec7f4afa8758d41b8fc8c9db8f | "2022-09-06T02:27:39Z" | java | "2022-09-06T15:14:41Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,771 | ["dolphinscheduler-ui/src/views/projects/workflow/definition/components/start-modal.tsx", "dolphinscheduler-ui/src/views/projects/workflow/definition/components/timing-modal.tsx"] | [Improvement][UI] Whether the Notification Strategy and the Alarm Group are directly related to each other? | ### 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

if i specify Notification Strategy,and not specify Alarm Group. what should we do? don't send or remind the user should specify a Alarm Group?
above relation the issues #11753 PTAL
### 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/11771 | https://github.com/apache/dolphinscheduler/pull/12200 | d3f087e29b212ee9295fe155de6e5ec91b8f2be6 | c7d9719e97a9c37eed77e59e9a669653e5edeb73 | "2022-09-05T02:38:07Z" | java | "2022-09-29T03:22:10Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,768 | ["dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/MonitorDBDao.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/utils/H2Performance.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/utils/MySQLPerformance.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/utils/PostgreSQLPerformance.java"] | [Improvement][Monitor] Support monitor h2 database in monitor page | ### 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
Right now, we only support monitor mysql/pgsql in monitor page, when we start at standalone mode, we cannot get the db health in monitor page, it's better to support h2.
### 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/11768 | https://github.com/apache/dolphinscheduler/pull/11813 | e101a5cb2c1a273eb4f2b29230c769f69f698148 | e20f17a7b72404bce3ce5c642668c428a5e768c0 | "2022-09-05T01:07:12Z" | java | "2022-09-09T01:43:56Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,760 | ["dolphinscheduler-ui/src/views/projects/task/components/node/detail-modal.tsx", "dolphinscheduler-ui/src/views/projects/task/instance/use-table.ts"] | [Bug] [Project] The task instances page should be filtered by the task name. | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
The task instances page did not be filtered by the task name when I clicked the view history button of the task modal in the workflow instance detail page.
### What you expected to happen
The task instances page should be filtered by the task name.
### How to reproduce
- Go into the workflow instance detail page.
- Open a task modal.
- Click the view history button.
### 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/11760 | https://github.com/apache/dolphinscheduler/pull/11761 | f8d46a26c1a4c0a8eedf2a6260d4b968a3cccc42 | d0d481d10f709f2f6ee26083198d0784146ac61e | "2022-09-03T02:19:15Z" | java | "2022-09-03T03:57:02Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,758 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/NetUtils.java", "dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/utils/NetUtilsTest.java"] | [Bug] [Common] IPv4 Pattern is wrong. | ### 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
IPv4 Pattern is not correct.


### What you expected to happen
can check invaild IPv4
### How to reproduce
just add some wrong IP to test UT
### 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/11758 | https://github.com/apache/dolphinscheduler/pull/11762 | ada7cf71d5c70174c7d7c6608f4f60896db5d6b9 | 289e1ecdc6f46f9b4c0cb851c0f004b18fe2e50d | "2022-09-02T10:45:08Z" | java | "2022-09-26T01:10:22Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,753 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ExecutorController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/python/PythonGateway.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/ExecutorService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/ExecutorControllerTest.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ExecutorServiceTest.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/AlertDao.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/ProcessDefinition.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteRunnable.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/alert/ProcessAlertManager.java"] | [Bug] [Alert Server] send alert error alert data id | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
when I want to test Email send when a task finish , I get a error :
[INFO] 2022-09-02 08:00:11.268 +0000 org.apache.dolphinscheduler.alert.AlertRequestProcessor:[52] - Received command : AlertSendRequestCommand{groupId=0, title='sql_hive query result sets', content='[{"_c0":36816}]', warnType=1}
[ERROR] 2022-09-02 08:00:11.270 +0000 org.apache.dolphinscheduler.alert.AlertSenderService:[148] - Alert GroupId 0 send error : not found alert instance
[ERROR] 2022-09-02 08:00:14.699 +0000 org.apache.dolphinscheduler.alert.AlertSenderService:[244] - send alert error alert data id :57,
java.lang.NullPointerException: User must not be null
at java.util.Objects.requireNonNull(Objects.java:228)
at org.apache.dolphinscheduler.plugin.alert.email.MailSender.<init>(MailSender.java:109)
at org.apache.dolphinscheduler.plugin.alert.email.EmailAlertChannel.process(EmailAlertChannel.java:41)
at org.apache.dolphinscheduler.alert.AlertSenderService.alertResultHandler(AlertSenderService.java:232)
at org.apache.dolphinscheduler.alert.AlertSenderService.send(AlertSenderService.java:105)
at org.apache.dolphinscheduler.alert.AlertSenderService.run(AlertSenderService.java:76)
[INFO] 2022-09-02 08:00:14.699 +0000 org.apache.dolphinscheduler.alert.AlertSenderService:[255] - Alert Plugin Email-Alert send error : User must not be null
### What you expected to happen
I should got a Email when a task finish
### How to reproduce
create a Email group , smtp then I create a test task , run It with a Email group ,then will get the same error
### Anything else
dolphin 3.0 pseudo-cluster install
### Version
3.0.0
### 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/11753 | https://github.com/apache/dolphinscheduler/pull/11774 | 57fafe42567b434d5a8ef4673ca5d9796cc4dd05 | e27c79974d93d0d4181a0f5dbe45159084e224d3 | "2022-09-02T08:19:12Z" | java | "2022-09-29T07:34:40Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,736 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ExecutorController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/python/PythonGateway.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/ExecutorService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/ExecuteFunctionControllerTest.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ExecuteFunctionServiceTest.java", "dolphinscheduler-ui/src/locales/en_US/project.ts", "dolphinscheduler-ui/src/locales/zh_CN/project.ts", "dolphinscheduler-ui/src/views/projects/workflow/definition/components/start-modal.tsx", "dolphinscheduler-ui/src/views/projects/workflow/definition/components/use-form.ts"] | [Feature][Dependent] Dependent support schedule all downstream recursively | ### 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 support schedule all downstream recursively.
a -> b -> c -> d
Currently only rerun b when I rerun a, I want to support rerun b,c,d
### 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/11736 | https://github.com/apache/dolphinscheduler/pull/11778 | 77e58ce24562d5aa8e6b0f766cf479231ad2944d | d2f83ee8cf623630ca971975b4c4337b31b529f3 | "2022-09-01T09:48:34Z" | java | "2023-05-05T06:52:27Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,732 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/DependentProcessDefinition.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/WorkFlowLineageMapper.xml"] | [Bug] [Dependent] Dependent downstream trigger error when schedule cycle not day. | ### 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 downstream trigger error when schedule cycle not day.
### What you expected to happen
Can normal schedule downstream when upstream rerun use denpendency mode.
```
DependentProcessDefinition.getDependentCycle()
if (this.getProcessDefinitionCode() == dependentItem.getDefinitionCode())
```
this.getProcessDefinitionCode() should use upstream process code.
### How to reproduce
create two workflow, parent, child, child denpend on parent and schedule evert hour.
### Anything else
_No response_
### Version
3.0.0
### 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/11732 | https://github.com/apache/dolphinscheduler/pull/11734 | 2e61c76c225ccfd39a7860fb6fcd6653ef86b9a7 | 37325b4c3410c2fe2f025c16363ea0c3a157647e | "2022-09-01T07:54:18Z" | java | "2022-09-08T07:08:10Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,726 | ["dolphinscheduler-datasource-plugin/dolphinscheduler-datasource-presto/src/main/java/org/apache/dolphinscheduler/plugin/datasource/presto/param/PrestoDataSourceProcessor.java"] | [Bug] [dolphinscheduler-api] create presto datasource failed with extra "jdbc connect parameters" | ### 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 try to create PRESTO datasource type, if jdbc connect parameters assigned.
TestConnect will be failed with tips "JDBC connect failed".
For example, use `{"SSL":"true"}` as connect params:

the logs will shows:
```
[ERROR] 2022-09-01 11:38:21.728 +0800 com.zaxxer.hikari.pool.HikariPool:[594] - HikariPool-2 - Exception during pool initialization.
java.sql.SQLException: Connection property 'SSL' is both in the URL and an argument
```
### What you expected to happen
Because "SSL" is a valid property when connect presto, so the test connect should be success.
### How to reproduce
As above.
Two points mentioned:
1. plz just use jdbc connet params at first to avoid the dataSourceClientCache, bcz cache key does not contain params.
2. IMO, when connect presto, we can set params either in jdbc-url or properties, However, the same parameter may not be specified using both methods, ref to [JDBC driver](https://trino.io/docs/current/client/jdbc.html#connection-parameters)
I'm pleasure to fix this, and what is next?
### Anything else
Every time happens.
### Version
3.0.0
### 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/11726 | https://github.com/apache/dolphinscheduler/pull/15093 | dc503b0e00dd0b25f810e5b8dd3496a1efa1fede | 8665951981b48fad051fe7457af5fddf8e61de87 | "2022-09-01T03:55:42Z" | java | "2023-11-03T06:44:27Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,720 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-spark/src/main/java/org/apache/dolphinscheduler/plugin/task/spark/SparkCommand.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-spark/src/main/java/org/apache/dolphinscheduler/plugin/task/spark/SparkTask.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-spark/src/main/java/org/apache/dolphinscheduler/plugin/task/spark/SparkVersion.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-spark/src/test/java/org/apache/dolphinscheduler/plugin/task/spark/SparkTaskTest.java", "dolphinscheduler-worker/src/main/bin/start.sh"] | [Bug] [spark-sql] In spark-sql, select both SPARK1 and SPARK2 versions and execute ${SPARK_HOME2}/bin/spark-sql | ### 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 spark-sql, select both SPARK1 and SPARK2 versions and execute ${SPARK_HOME2}/bin/spark-sql
### What you expected to happen
In spark-sql, selecting SPARK1 should execute ${SPARK_HOME1}/bin/spark-sql and selecting SPARK2 should execute ${SPARK_HOME1}/bin/spark-sql
### How to reproduce

[INFO] 2022-08-31 09:57:14.923 +0000 [taskAppId=TASK-20220831-6710611439552_3-40-44] TaskLogLogger-class org.apache.dolphinscheduler.plugin.task.spark.SparkTask:[69] - spark task params {"localParams":[],"rawScript":"SELECT * from ods.ods_pigeon_day LIMIT 1","resourceList":[],"programType":"SQL","mainClass":"","deployMode":"client","appName":"SparkSQLDemo","sparkVersion":"SPARK1","driverCores":1,"driverMemory":"512M","numExecutors":2,"executorMemory":"2G","executorCores":2}
[INFO] 2022-08-31 09:57:14.933 +0000 [taskAppId=TASK-20220831-6710611439552_3-40-44] TaskLogLogger-class org.apache.dolphinscheduler.plugin.task.spark.SparkTask:[240] - raw script : SELECT * from ods.ods_pigeon_day LIMIT 1
[INFO] 2022-08-31 09:57:14.934 +0000 [taskAppId=TASK-20220831-6710611439552_3-40-44] TaskLogLogger-class org.apache.dolphinscheduler.plugin.task.spark.SparkTask:[241] - task execute path : /tmp/dolphinscheduler/exec/process/6710440832960/6710611439552_3/40/44
[INFO] 2022-08-31 09:57:14.937 +0000 [taskAppId=TASK-20220831-6710611439552_3-40-44] TaskLogLogger-class org.apache.dolphinscheduler.plugin.task.spark.SparkTask:[130] - spark task command: ${SPARK_HOME2}/bin/spark-sql --master yarn --deploy-mode client --driver-cores 1 --driver-memory 512M --num-executors 2 --executor-cores 2 --executor-memory 2G --name SparkSQLDemo --queue haodf -f /tmp/dolphinscheduler/exec/process/6710440832960/6710611439552_3/40/44/40_44_node.sql
[INFO] 2022-08-31 09:57:14.937 +0000 [taskAppId=TASK-20220831-6710611439552_3-40-44] TaskLogLogger-class
### Anything else
_No response_
### Version
3.0.0
### 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/11720 | https://github.com/apache/dolphinscheduler/pull/11721 | 147e0ae8d74c39ed82ca36f068b96c941fcdcf50 | 25b78a80037c4a7edb551dd04328276ebdc7efc1 | "2022-08-31T11:27:50Z" | java | "2022-09-12T02:35:27Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,718 | ["dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.xml"] | [Improvement][Process Insatnce] optimize the process instance query, change the date time range | ### 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
users can only use left-open, right-closed rule queries when querying the list of workflow instances through a time range. I think left-closed, right-closed rule queries are more appropriate
### 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/11718 | https://github.com/apache/dolphinscheduler/pull/11719 | 67e7f88d8b7f65696d36fcb3c85c2d0b7836cae8 | d0f5e7edf34a71e31bd2f5fa376bf235b395ec7d | "2022-08-31T11:00:11Z" | java | "2022-08-31T11:53:41Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,713 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/TaskInstanceController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/TaskInstanceV2Controller.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/dto/taskInstance/TaskInstanceListPagingResponse.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/dto/taskInstance/TaskInstanceQueryRequest.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/dto/taskInstance/TaskInstanceSuccessResponse.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/TaskInstanceService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TaskInstanceServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/TaskInstanceControllerTest.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/TaskInstanceV2ControllerTest.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/TaskInstanceServiceTest.java"] | [Feature][Api] Refactor org.apache.dolphinscheduler.api.controller.TaskInstanceController | ### 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://github.com/apache/dolphinscheduler/issues/10257 Suggest refactor the backend api
Refactor org.apache.dolphinscheduler.api.controller.TaskInstanceController
#### Suggested optimization
- Content-Type change to application/json
- Add more example to api doc
- Improve the accuracy of error reporting
- The input and output parameters of API should use entity
### 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/11713 | https://github.com/apache/dolphinscheduler/pull/11747 | 9e6f4d2bc17579cdf9ca1f45fa006b01103efac8 | 0186413a9f752bbe015f804a165b5f587232653a | "2022-08-31T08:23:51Z" | java | "2022-11-16T10:32:42Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,709 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/DependentProcessDefinition.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/WorkFlowLineageMapper.xml"] | [Bug] [Dependent] Dependent triger error version downstream | ### 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 historical version of the workflow is triggered downstream when dependency mode complement is enabled upstream
### What you expected to happen
Use the version of the day of the run.
### How to reproduce




### Anything else
_No response_
### Version
3.0.0
### 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/11709 | https://github.com/apache/dolphinscheduler/pull/11734 | 2e61c76c225ccfd39a7860fb6fcd6653ef86b9a7 | 37325b4c3410c2fe2f025c16363ea0c3a157647e | "2022-08-31T07:15:08Z" | java | "2022-09-08T07:08:10Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,689 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxTask.java"] | [Bug] [DataX] change replaceAll to replace | ### 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="788" alt="image" src="https://user-images.githubusercontent.com/33984497/187155685-68f82729-7c35-4902-ba59-44b99d0140b6.png">
if use replaceAll which parses a regular expression .so create_time be changed to crea_me
### What you expected to happen
be right
### How to reproduce
change to replace
### 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/11689 | https://github.com/apache/dolphinscheduler/pull/11696 | 554562bfa93d4fc8f0fc8c50fe77153e2db3f3f2 | f8b9aad2394a63c8e10edf7bb15d62853e941406 | "2022-08-29T08:16:05Z" | java | "2022-09-05T01:54:18Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,678 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ProcessDefinitionController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/ProcessDefinitionService.java", "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"] | [Improvement][API] Improvement the error message when batch delete workflow | ### 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 I batch delete workflows, any workflow fails, I get not friendly error message.
- We should display the workflow name rather then code
- We should display the reason why it delete failed
link #11554
### 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/11678 | https://github.com/apache/dolphinscheduler/pull/11682 | 962fa6dbd51c232b3b45243b408c5f19c1913879 | 1a4d7a842663574752bcabc222d2d0d778089fb7 | "2022-08-27T11:14:31Z" | java | "2022-09-29T11:08:26Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,669 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessInstanceServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ProcessInstanceServiceTest.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/DateUtils.java", "dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/utils/DateUtilsTest.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/utils/WorkflowUtils.java", "dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/utils/WorkflowUtilsTest.java"] | [Bug] [WorkflowInstance] the value of duration in Workflow Instance table is wrong | ### 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 workflow instance is in the process of executing, the result should be empty, regardless of whether the workflow instance
was run for the first time or re-run.
But when we re-run the workflow instance , the status show instance is running, but the ***duration*** is displayed as `(the task re-run start time) - (the last task end time)`, which is obviously wrong.
Because the workflow instance page will keep query the data from api - ProcessInstanceController-queryProcessInstanceList, the source code just use **_Math.abs(startTime - endTime)_**.
Please check the following code:
`for (ProcessInstance processInstance : processInstances) {
processInstance.setDuration(
DateUtils.format2Duration(processInstance.getStartTime(), processInstance.getEndTime()));
...
}`
### What you expected to happen
When the workflow instanceis running, the duration should be null,
### How to reproduce
Step 1. Create a workflow instance and run it.
Step 2. After the workflow instance finished, then click "re-run" button, and check the duration when the state show executing.
### Anything else
Need to determine in which workflow instance state this duration needs to be empty, i think just **_RUNNING_EXECUTION_** and **_SERIAL_WAIT_**.
### 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/11669 | https://github.com/apache/dolphinscheduler/pull/12264 | 0e1c8d81530ad530779469598f03410ceb9b067b | 17cd644506872c1b8e3f9ddf657371580c35e4e6 | "2022-08-26T13:10:47Z" | java | "2022-10-13T01:50:31Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,662 | ["dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/AlertPluginInstanceMapper.xml", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProcessInstanceMapper.xml", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ResourceMapper.xml", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ResourceUserMapper.xml", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ScheduleMapper.xml", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskInstanceMapper.xml", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/UserMapper.xml"] | [Improvement][dolphinscheduler dao] fix foreach null items in mapper.xml | ### 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
<img width="661" alt="image" src="https://user-images.githubusercontent.com/51652084/186855584-9e58fde9-df9d-48eb-8860-6dd075e5a349.png">
suggesting use `<if ids != null and ids.size() > 0>` to surround foreach.
### 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/11662 | https://github.com/apache/dolphinscheduler/pull/11676 | 6e4d974b91a38047d0073a36944817a0cd21a6fd | 6a5367fd57977305ff0c734d8103430ba15acaec | "2022-08-26T08:15:39Z" | java | "2022-08-28T12:58:12Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,658 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sql.ts"] | [Feature][UI] Enable highlight and auto-complete for SQL scripts | ### 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 we have not enabled `hightlight` and `auto-complete` for SQL scripts, but it is easy to do it in the front-end.

### 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/11658 | https://github.com/apache/dolphinscheduler/pull/11659 | cccbd27c589d84bc5238aaad5b15c18c4c10ba41 | 23d8aaf735496aa10f1984433f19eccaa8ca788f | "2022-08-26T05:42:56Z" | java | "2022-08-26T11:03:44Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,630 | ["docs/docs/en/architecture/configuration.md", "docs/docs/zh/architecture/configuration.md"] | [Feature][worker] select ip based on network displayName | ### 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
<img width="669" alt="image" src="https://user-images.githubusercontent.com/33984497/186388948-18d468e4-715b-489d-9208-99ef53f9782f.png">
this machine have two inner ip address.i want to use the second.but ds select the first.(The ip of my local computer is not on the same switch as the first ip on the server, so I have to use the second ip)
i want to config the displayName ```eth1``` for select which one i want to use.
### 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/11630 | https://github.com/apache/dolphinscheduler/pull/11653 | cf3b4424d7125a5513bb744f4dd964ac879dd607 | ce8db1c5fb5992093f72491c691014858c35a597 | "2022-08-24T09:59:42Z" | java | "2022-08-26T02:50:31Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,620 | ["docs/docs/en/guide/project/workflow-definition.md", "docs/docs/en/guide/resource/file-manage.md", "docs/docs/zh/guide/project/workflow-definition.md", "docs/docs/zh/guide/resource/file-manage.md"] | [DOC] should notice that need setting the full path when call the resource file | ### 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
serveral colleagues reported that when calling the resource file in shell task, they thought is was the file name by default, but actually the file was stored in different suddirectorie at various levels, then the failed task show cannot find the resource files.
So i suggest it should be better to notice user to using the full path.
### What you expected to happen
The doc can clearly guide users.
### How to reproduce
Just check doc.
### 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/11620 | https://github.com/apache/dolphinscheduler/pull/11621 | ce8db1c5fb5992093f72491c691014858c35a597 | eda9f3d50cb3ef49faefaf5762794ca0f5ffddfa | "2022-08-23T12:22:03Z" | java | "2022-08-26T02:58:56Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,616 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ProcessDefinitionController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/python/PythonGateway.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/ProcessDefinitionService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/ProcessDefinitionControllerTest.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ProcessDefinitionServiceTest.java", "dolphinscheduler-ui/src/service/modules/process-definition/index.ts", "dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-save-modal.tsx"] | [Bug] Modify workflow definition name validation 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
Modify workflow definition name validation error
### What you expected to happen
Normal
### How to reproduce
Change the existed workflow name.
### Anything else
No
### 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/11616 | https://github.com/apache/dolphinscheduler/pull/11617 | b96d69701a08f25cf43313df80a96d23c35ee36e | cf3b4424d7125a5513bb744f4dd964ac879dd607 | "2022-08-23T10:50:52Z" | java | "2022-08-24T11:59:38Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,608 | ["docs/docs/en/guide/parameter/built-in.md", "docs/docs/zh/guide/parameter/built-in.md", "dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/TaskConstants.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/parser/TimePlaceholderUtils.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/test/java/org/apache/dolphinscheduler/plugin/task/api/parser/TimePlaceholderUtilsTest.java"] | [Improvement][task-plugin] New time variables are added to facilitate business development | ### 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 of data development, the original time variable provided by the dolphin scheduler needs to do many secondary calculations to obtain the available business time. I want to provide more convenient time variables for business development. for example:
**First day of the month**: $[month_first_day(yyyy-MM-dd,offset)] offset = month ,such as $[month_first_day(yyyy-MM-dd,-1)]
**Last day of the month**: $[month_last_day(yyyy-MM-dd,offset)] offset = month ,such as $[month_last_day(yyyy-MM-dd,-1)]
**First day of the week**: $[week_first_day(yyyy-MM-dd, offset)] offset = week, such as $[week_first_day(yyyy-MM-dd,-1)]
**Last day of the week**: $[week_last_day(yyyy-MM-dd, offset)] offset = week, such as $[week_last_day(yyyy-MM-dd,-1)]
I will also provide more time variables with business attributes
### 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/11608 | https://github.com/apache/dolphinscheduler/pull/11667 | 151c2d2c70c652a72b864d9007b239c22706b94d | 779a0b9c75f648a02d86756f06ff7856b8a74873 | "2022-08-23T03:04:25Z" | java | "2022-09-26T08:01:32Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,590 | ["dolphinscheduler-dao/src/main/resources/sql/upgrade/2.0.0_schema/mysql/dolphinscheduler_ddl.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/2.0.0_schema/mysql/dolphinscheduler_ddl_post.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/2.0.0_schema/mysql/dolphinscheduler_dml.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/2.0.0_schema/postgresql/dolphinscheduler_ddl_post.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/2.0.0_schema/postgresql/dolphinscheduler_dml.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/2.0.1_schema/mysql/dolphinscheduler_dml.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/2.0.1_schema/postgresql/dolphinscheduler_dml.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.0.0_schema/mysql/dolphinscheduler_ddl.sql"] | [Bug] [UPGRADE] when i upgrade ds from v1.3.9 to v3.0.0 , a lot of errors are encountered | ### 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 upgrade ds from v1.3.9 to v3.0.0 , a lot of errors are encountered.
The meta database I'm using is mysql.
Errors such as file cannot be found and column not found etc.
I have solved the problem and can submit the code.
### What you expected to happen
You may encounter the same error when upgrading.
### How to reproduce
Upgrade ds from v1.3.9 to v3.0.0.
### Anything else
_No response_
### Version
3.0.0
### 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/11590 | https://github.com/apache/dolphinscheduler/pull/11619 | e1ac0e26050c9666ef1100f3ed0e352aaf5a1dfc | 98a8b5383edf695811b64f6d871e8783e4a60003 | "2022-08-22T07:29:12Z" | java | "2022-10-11T02:20:05Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,583 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessInstanceServiceImpl.java"] | [Bug] [UI] Gantt chart does not show | ### 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
**task.status** is expected to get a status string value such as ' SUCCESS ' but the backend returns an object like ' TaskExecutionStatus{code=7, desc=' success'} ' where a mapping is required

### What you expected to happen
Open the Gantt chart
### How to reproduce
Open the Gantt chart
### 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/11583 | https://github.com/apache/dolphinscheduler/pull/13778 | d1b6e6f02c39efc514f072ccc112778bfd8fecd9 | 4e2c22061ae70af23d2f2a6f87abd86e435aada5 | "2022-08-22T02:24:17Z" | java | "2023-03-28T09:17:10Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,553 | ["dolphinscheduler-ui/src/views/datasource/list/detail.tsx"] | [Bug] [UI] Edit datasource port show 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
Edit datasource port show error

### What you expected to happen
show correct, as backend return.
### How to reproduce
use 3.0.0-release and create datasource, refresh page, and edit it.
### Anything else
_No response_
### Version
3.0.0
### 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/11553 | https://github.com/apache/dolphinscheduler/pull/11624 | 961e67f5244ec0a9d445582b0d2a416f4c9f2ece | 878989579150aebe34a8f19e5af7589d74cfebaa | "2022-08-19T01:54:24Z" | java | "2022-08-24T06:04:19Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,547 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/WorkflowExecutionStatus.java"] | [Improvement][Workflow] Add a stop function when you are ready to pause | ### 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 workflow is running or blocking for a long time, the user may do pause opteration, and the pause operation may be blocked while waiting for the task to execute, so I think there should be an option to stop it when it is ready pause status
### 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/11547 | https://github.com/apache/dolphinscheduler/pull/11543 | 277c78010f45d5bc03eb56cebc92ef06dc1edf2f | 3b72c6efe777bb4f1f7310928cf3ee525c9a6ea1 | "2022-08-18T09:43:50Z" | java | "2022-08-18T13:32:53Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,538 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/SchedulerController.java", "dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_h2.sql", "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.1.0_schema/mysql/dolphinscheduler_ddl.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.1.0_schema/postgresql/dolphinscheduler_ddl.sql"] | [Bug] [API] The task priority and process instance priority might be null and cause NPE | ### 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 we execute a workflow might get a NPE, caused by priority is null.
We need to set the default value to be medium.
### What you expected to happen
xx
### How to reproduce
Update a scheduler, and set the priority to be null, and wait the workflow to be execute.
### 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/11538 | https://github.com/apache/dolphinscheduler/pull/11539 | c32236784664172426072c49e55def78f9716159 | 2862f5b67cace1a91a147f8693d4791bea41be1d | "2022-08-18T05:51:58Z" | java | "2022-08-18T08:21:12Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,534 | ["dolphinscheduler-ui/src/views/projects/workflow/components/dag/index.tsx", "dolphinscheduler-ui/src/views/projects/workflow/components/dag/use-graph-auto-layout.ts", "dolphinscheduler-ui/src/views/projects/workflow/definition/detail/index.tsx"] | [Feature][UI] Support formatting the layout when locations does not exist | ### 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
_No response_
### 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/11534 | https://github.com/apache/dolphinscheduler/pull/11535 | 878989579150aebe34a8f19e5af7589d74cfebaa | 096fae77f4a2dd436f515e5b51f170591d7b6f24 | "2022-08-18T03:41:31Z" | java | "2022-08-24T10:59:14Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,524 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-datax.ts"] | [Improvement][dolpscheduler-ui] some datasourceType which backend can't support ,but show in frontend | ### 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


### 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/11524 | https://github.com/apache/dolphinscheduler/pull/11527 | a974ba74ab73fd17e72195e93617b957cd0e20fd | c32236784664172426072c49e55def78f9716159 | "2022-08-17T06:53:33Z" | java | "2022-08-18T04:34:21Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,523 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessInstanceServiceImpl.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/TaskInstanceMapper.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskInstanceMapper.xml", "dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/mapper/TaskInstanceMapperTest.java"] | [Improvement][TaskInstance] reduce database queries | ### 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
reduce database queries
### 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/11523 | https://github.com/apache/dolphinscheduler/pull/11522 | 3f2ca7bca3e612b2ce5d22324d22aa33fac04ea2 | 4893bef5a79fc022b74f8c273bd8079517726f35 | "2022-08-17T06:34:06Z" | java | "2022-08-23T06:27:26Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,521 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ResourcesServiceImpl.java"] | [Improvement] File deletion logic optimization disadvantages | ### 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
All items in the folder will be deleted at one time
### 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/11521 | https://github.com/apache/dolphinscheduler/pull/11519 | 11d74fd7e802aaa79d9dbbb3f715a56559e8dcb0 | 006d8e21a6638affd4e69b9b4b0c28704db2c70d | "2022-08-17T03:48:50Z" | java | "2022-08-18T01:38:06Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,517 | ["dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.xml"] | [Bug] [Workflow Definition] ordinary users can not create depend 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

### What you expected to happen
create project, but can not select it
### How to reproduce
ordinary users create poject
### Anything else
_No response_
### Version
3.0.0
### 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/11517 | https://github.com/apache/dolphinscheduler/pull/11961 | b73a9511a767a4f0d1ceae8821363db620b12cdd | 925e2fa55169774ae53d7048dc2e602e9c926d35 | "2022-08-17T03:23:07Z" | java | "2022-09-16T01:12:33Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,468 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java"] | [Improvement][api] Support re running historical version workflow | ### 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
Support re running historical version workflow
### 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/11468 | https://github.com/apache/dolphinscheduler/pull/11489 | 006d8e21a6638affd4e69b9b4b0c28704db2c70d | ebdf903dcc0e770ebf35167a5802cdd5ba229f61 | "2022-08-13T14:52:44Z" | java | "2022-08-18T01:46:54Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,460 | ["dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProcessDefinitionMapper.xml"] | [FEATURE-RD][Workflows] Workflows need to support sorting | ### 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
The priority of the current sorting is by timing status first and then by update time, which does not follow the logic of sorting
### 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/11460 | https://github.com/apache/dolphinscheduler/pull/11462 | 896fef6c98f4c19c57ff218ec284a967215a29f0 | f3d28112ce0eeecaa1bc276ae8ef63903ae91f5f | "2022-08-13T03:42:47Z" | java | "2022-08-13T05:28:35Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,457 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-zeppelin/src/main/java/org/apache/dolphinscheduler/plugin/task/zeppelin/ZeppelinTask.java", "pom.xml", "style/eclipse.importorder"] | [Feature][Style] Enable spotless to manage imports | ### 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 `spotless` in DS will not manage `imports` automatically, we need to enable it to fix imports:
1. Remove unused imports.
2. Sort imports in better order (instead of simply sorting import alphabetically).
3. Remove wildcards imports.
### Use case
* Already described above.
### Related issues
related: #10963
### 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/11457 | https://github.com/apache/dolphinscheduler/pull/11458 | 7ff34c3947102afc04645a7f50fe49b7d7b3c75e | 896fef6c98f4c19c57ff218ec284a967215a29f0 | "2022-08-12T14:04:53Z" | java | "2022-08-13T02:05:03Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,455 | ["dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-email/src/main/java/org/apache/dolphinscheduler/plugin/alert/email/MailSender.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-email/src/test/java/org/apache/dolphinscheduler/plugin/alert/email/MailUtilsTest.java"] | [Feature][UI] hidden unnecessary mail.smtp.auth fileds, when user choose disable mail.smtp.auth | ### 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
as the comment [https://github.com/apache/dolphinscheduler/pull/10721#issuecomment-1197870428](url) said,
it's more friendly for user to hidden the field for mail.smtp.auth(fields in the red rectangle), when user choose disable mail.smtp.auth
<img width="535" alt="Screen Shot 2022-08-12 at 16 53 59" src="https://user-images.githubusercontent.com/38579068/184321633-5e8e073e-34c8-43e1-aaba-03fef2c47a42.png">
### Use case
hidden the field for mail.smtp.auth(fields in the red rectangle), when user choose disable mail.smtp.auth
### Related issues
https://github.com/apache/dolphinscheduler/issues/10698
### 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/11455 | https://github.com/apache/dolphinscheduler/pull/13761 | 1075be6e62a4aae65682f2b4db0e38b16006e1af | 69e744961b489c9553e656b8d1f6247b46884e05 | "2022-08-12T09:03:23Z" | java | "2023-03-21T05:59:01Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,452 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/Constants.java", "dolphinscheduler-log-server/src/test/java/org/apache/dolphinscheduler/server/log/SensitiveDataConverterTest.java"] | [Bug] [Logger Server] Incorrect password regular expression | ### 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
SensitiveDataConverter passwordHandler
/**
* dataSource sensitive param
*/
public static final String DATASOURCE_PASSWORD_REGEX = "(?<=((?i)password((\\\\\":\\\\\")|(=')))).*?(?=((\\\\\")|(')))";
The log password printed at runtime is not replaced with * sign
### What you expected to happen
"password":"view1"
can replace to
"password":"****"
### How to reproduce
the old pattern is ok.
DATASOURCE_PASSWORD_REGEX = "(?<=(\"password\":\")).*?(?=(\"))"
### Anything else
_No response_
### Version
3.0.0
### 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/11452 | https://github.com/apache/dolphinscheduler/pull/11459 | 5811b84fcc7cc0ff354cf8e871f36aa3ae61aa2a | 71b4087421f8677318eca56cf197d2095247a19e | "2022-08-12T08:03:21Z" | java | "2022-09-16T05:34:22Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,442 | ["docs/docs/en/DSIP.md", "docs/docs/zh/DSIP.md"] | [Doc][DSIP] DSIP Chinese and English docs are in the wrong place | ### 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 the Chinese DSIP doc in English docs path and the English doc in Chinese doc path.
### Documentation Links
* https://dolphinscheduler.apache.org/zh-cn/docs/latest/user_doc/about/introduction.html
* https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/DSIP.html
### 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/11442 | https://github.com/apache/dolphinscheduler/pull/11443 | abd57987552b77cc783cad6894ceeda898cccb6c | e3c6ace81d08a3421187af283c077d1683f1016b | "2022-08-12T03:07:46Z" | java | "2022-08-12T03:20:12Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,432 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-http/pom.xml", "dolphinscheduler-task-plugin/dolphinscheduler-task-http/src/test/java/org/apache/dolphinscheduler/plugin/task/http/HttpTaskTest.java"] | [Test][Http Task] Add unit tests to HttpTask | ### 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, i want add some unit tests to http task.
Mainly to test whether the HttpTask can execute the task normally, and whether the task status is correct under different HTTP check conditions.
### 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/11432 | https://github.com/apache/dolphinscheduler/pull/11453 | 8ec2f792488ce528c9bc4340bc0b0cc4a5743f9d | 11d74fd7e802aaa79d9dbbb3f715a56559e8dcb0 | "2022-08-11T12:15:28Z" | java | "2022-08-17T14:02:52Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,428 | ["dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-startup-param.tsx"] | [Bug-FE] [workflow instance] The alarm group in the workflow instance 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
The alarm group in the workflow instance is empty
<img width="995" alt="image" src="https://user-images.githubusercontent.com/76080484/184112833-525437a1-b8ae-4f5b-836b-bc288a5b26f6.png">
### What you expected to happen
Normal display
### How to reproduce
Select alarm group when running workflow
### Anything else
_No response_
### Version
3.0.0
### 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/11428 | https://github.com/apache/dolphinscheduler/pull/11429 | 20b87ee76178de9e55c68e3d78ed8bdb5d1509f3 | d02cf85b60cf39da7bbb424579abca6bb1de09ff | "2022-08-11T10:20:31Z" | java | "2022-08-11T12:58:56Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,427 | ["docs/docs/en/guide/resource/configuration.md", "docs/docs/zh/guide/resource/configuration.md"] | [Doc][Resources] Instruct users to use local storage if they have remote storage mounted to local | ### 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
* Local storage configuration of `resource center` is more than `for a single machine`. If users have their remote storage mounted to local, they could use 'local storage' configuration to operate stuff in their remote storage.
### Documentation Links
* https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/resource/configuration.html
### 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/11427 | https://github.com/apache/dolphinscheduler/pull/11435 | 4d427ee215427c3793a2f779b2ca69353e995fcd | 9d6fc92af9ba5e2a0c822eb78dd6371fe72d02d7 | "2022-08-11T09:54:03Z" | java | "2022-08-11T16:18:43Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,426 | ["dolphinscheduler-ui/src/components/crontab/common.ts", "dolphinscheduler-ui/src/components/crontab/index.tsx", "dolphinscheduler-ui/src/components/crontab/modules/day.tsx", "dolphinscheduler-ui/src/components/crontab/modules/time.tsx", "dolphinscheduler-ui/src/components/crontab/types.ts"] | [Bug] [crontab] The maximum value of hour selection is 59 | ### 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
在官方发布的3.0版本中,设置定时参数时出现问题,在时、天、月选择最大值都到了59,未与秒、分选择区分

这样会导致解析crontab表达式失败

而这些在2.0.5版本中,做的很好
### What you expected to happen
我希望修复这个bug,像2.0.5中的那样
### How to reproduce
工作流上线后,设置定时任务,在“时”页签的具体小时数对应下拉框可以看到
### Anything else
_No response_
### Version
3.0.0
### 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/11426 | https://github.com/apache/dolphinscheduler/pull/11661 | 23d8aaf735496aa10f1984433f19eccaa8ca788f | 769a20e98698ef6769c82c88ee31a93f5717743c | "2022-08-11T09:36:14Z" | java | "2022-08-26T15:04:29Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,413 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/task/CommonTaskProcessor.java"] | [Bug] [Master] Cannot set task status to kill if the task is not in running. | ### 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 the task is not running in worker, we cannot set the status to kill.
### What you expected to happen
Can stop the workflow instance.
### How to reproduce
xx
### 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/11413 | https://github.com/apache/dolphinscheduler/pull/11414 | 82177840442d09bf012d3fd3f1e9665581cf4cdf | 496c2d4bfa9bcf72bd8c90a7732844b543c15610 | "2022-08-11T04:06:20Z" | java | "2022-08-11T05:38:49Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,408 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxTask.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxUtils.java"] | [Feature][DataX] add hive option under drop down box | ### 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
i'll add hive option ,so people can choose hive.
I will complete the back-end parsing task of converting hive into datax task
### 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/11408 | https://github.com/apache/dolphinscheduler/pull/11493 | 1c15a7d60536f0b02f1f285a083600088fd54278 | d8d5d392a7a47992bbd9fee564f4d0ffdbff4a09 | "2022-08-11T02:39:11Z" | java | "2022-08-20T00:25:53Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,401 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-all/pom.xml"] | [Bug] [Task Plugin] can not create chunjun task in workflow definition | ### 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
Error occured when create a workflow with chunjun task


### What you expected to happen
save workflow succeed
### How to reproduce
As What Hadpped describes, create workflow -> config chunjun task node -> save, then error occured.
### 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/11401 | https://github.com/apache/dolphinscheduler/pull/11375 | db46e4786aa0c5f5f16fac4e977a0570c8702fe1 | 1164cb776de194b8059f26f2d7a069b484fe2498 | "2022-08-10T11:10:15Z" | java | "2022-09-11T11:14:05Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,394 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-seatunnel/src/main/java/org/apache/dolphinscheduler/plugin/task/seatunnel/spark/SeatunnelSparkParameters.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-seatunnel/src/main/java/org/apache/dolphinscheduler/plugin/task/seatunnel/spark/SeatunnelSparkTask.java", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sea-tunnel.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/format-data.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/tasks/use-sea-tunnel.ts"] | [Improvement][Task Plugin] Remove Passed Parameter --queue in Seatunnel 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
Remove --queue parameter because it passed.
### 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/11394 | https://github.com/apache/dolphinscheduler/pull/11395 | b81574ecf23b02787f996deaa9572f380b794d66 | b3919d30e77f622e7b82713a293f262b6effbbca | "2022-08-10T07:41:49Z" | java | "2022-08-10T12:17:16Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,386 | ["dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-context-menu.tsx", "dolphinscheduler-ui/src/views/projects/workflow/components/dag/index.tsx"] | [Improvement][UI] Concise the logic available for task action buttons on workflow definition detail page. | ### 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
It's better to remove the unavailable task action buttons.
### 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/11386 | https://github.com/apache/dolphinscheduler/pull/11419 | 32361f4fef63439690988a649c043585ddd639cf | 376d0a09ae7bce0de0c754001a580054a7cf9586 | "2022-08-10T03:53:43Z" | java | "2022-08-12T08:12:39Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,380 | ["script/scp-hosts.sh", "script/status-all.sh"] | [Improvement][scp-host.sh] Set StrictHostKeyChecking=no option to ssh | ### 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
Even if the password-free account is configured, when the user uses the `scp-host.sh` script to log in to the machine for the first time, an error (Host key verification failed.) may occur.
### 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/11380 | https://github.com/apache/dolphinscheduler/pull/11382 | f76520c07e65e44f0c8eb25f7cd66f26be1a1b22 | 3836dd7170e33a28ada6825dd9a6dcdcf0546aea | "2022-08-10T02:25:43Z" | java | "2022-08-11T02:49:46Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,378 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/ReleaseState.java"] | [Improvement] [API] API-Server release response message typo | ### 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
- response right message
### How to reproduce
- when an error occurs ,response right message
### 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/11378 | https://github.com/apache/dolphinscheduler/pull/11400 | 0464123c2b8d507a16a966e2dbe8dbfe9bf781e2 | 6e2bed4d6bd2341336190a1483482bd7c2db9bae | "2022-08-10T01:38:53Z" | java | "2022-08-11T01:21:32Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,376 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-seatunnel/src/main/java/org/apache/dolphinscheduler/plugin/task/seatunnel/spark/SeatunnelSparkParameters.java"] | [Bug] [Task Plugin] Seatunnel Task cannot save successfully when select spark engine | ### 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="600" alt="image" src="https://user-images.githubusercontent.com/42203474/183642799-2e1539a3-30d4-498d-b4d3-68529b3704e4.png">
<img width="606" alt="image" src="https://user-images.githubusercontent.com/42203474/183643321-8a52deb2-b253-4b65-ac90-bff9afb0cae5.png">
### What you expected to happen
I can save Seatunnel task 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/11376 | https://github.com/apache/dolphinscheduler/pull/11377 | 82e9c40df872b77b66e32cbd26660ccb8b56f620 | 03582f2e7039498d5563626b88dd8616d163c3f3 | "2022-08-09T12:08:24Z" | java | "2022-08-10T04:54:09Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,366 | ["dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-context-menu.tsx", "dolphinscheduler-ui/src/views/projects/workflow/components/dag/index.tsx"] | [Fix][UI] Workflow instance should not support right-click running | ### 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
Workflow instance cannot support right-click running because it will change the parameters of the initial operation of the workflow.
_Originally posted by @lenboo in https://github.com/apache/dolphinscheduler/issues/9978#issuecomment-1208941206_
### Use case
menu should like this, the start button should be greyed out and not clickable

### 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/11366 | https://github.com/apache/dolphinscheduler/pull/11367 | a50f110d3e541a5b832825facea628cddec01e9e | 82e9c40df872b77b66e32cbd26660ccb8b56f620 | "2022-08-09T06:58:26Z" | java | "2022-08-10T03:45:20Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 11,364 | ["docs/docs/en/faq.md", "pom.xml"] | [Feature][Style] Format docs automatically | ### 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, `Spotless` in DS only formats `java` code automatically.
* `Spotless` does support formatting `markdown`, `json`... We could use it to format DS docs automatically.

https://github.com/diffplug/spotless
### Use case
* Already described above.
### Related issues
#6535
### 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/11364 | https://github.com/apache/dolphinscheduler/pull/11384 | 2862f5b67cace1a91a147f8693d4791bea41be1d | 277c78010f45d5bc03eb56cebc92ef06dc1edf2f | "2022-08-09T03:54:53Z" | java | "2022-08-18T08:48:22Z" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.