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 | 13,418 | ["dolphinscheduler-ui/src/service/modules/process-task-relation/index.ts", "dolphinscheduler-ui/src/service/modules/process-task-relation/types.ts", "dolphinscheduler-ui/src/views/projects/task/definition/batch-task.tsx", "dolphinscheduler-ui/src/views/projects/task/definition/components/move-modal.tsx", "dolphinscheduler-ui/src/views/projects/task/definition/components/use-move.ts", "dolphinscheduler-ui/src/views/projects/task/definition/use-table.ts"] | [Bug] [ui] moving a task definition gets http code 405 | ### 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
moving a task definition gets 405 code, the api is be removed #8190
### What you expected to happen
no error
### How to reproduce
move a task definition
<img width="1125" alt="image" src="https://user-images.githubusercontent.com/20807051/212833480-f3be736d-1276-4ccb-b21a-271fb5f4fc9a.png">
### 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/13418 | https://github.com/apache/dolphinscheduler/pull/13441 | 385d781ebce3f60fd419c7ae0617c22a247ef001 | 802bf4a2e08cb1d0b990869c56f7da44396f85d1 | "2023-01-17T07:17:44Z" | java | "2023-01-30T02:01:59Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,381 | ["docs/docs/en/guide/upgrade/incompatible.md", "docs/docs/zh/guide/upgrade/incompatible.md", "dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/AbstractTask.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-sql/src/test/java/org/apache/dolphinscheduler/plugin/task/sql/SqlTaskTest.java"] | [Bug] [plugin] failed to pase variable in hive load 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
I created a sql task to load hdfs data into hive table(sql looks like ```load inpath '/path/table_name/dt=${dt}' into table table_name```), task failed and a parse exception is thrown.
exception stack:
```
org.apache.hive.service.cli.HiveSQLException: Error while compiling statement: FAILED: ParseException line 1:5 missing DATA at 'inpath' near 'inpath' in load statement
line 1:13 mismatched input '/' expecting StringLiteral near 'inpath' in load statement
at org.apache.hive.jdbc.Utils.verifySuccess(Utils.java:264)
at org.apache.hive.jdbc.Utils.verifySuccessWithInfo(Utils.java:250)
at org.apache.hive.jdbc.HiveStatement.runAsyncOnServer(HiveStatement.java:309)
at org.apache.hive.jdbc.HiveStatement.execute(HiveStatement.java:250)
at org.apache.hive.jdbc.HiveStatement.executeUpdate(HiveStatement.java:448)
at org.apache.hive.jdbc.HivePreparedStatement.executeUpdate(HivePreparedStatement.java:119)
at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61)
at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java)
at org.apache.dolphinscheduler.plugin.task.sql.SqlTask.executeUpdate(SqlTask.java:305)
at org.apache.dolphinscheduler.plugin.task.sql.SqlTask.executeFuncAndSql(SqlTask.java:202)
at org.apache.dolphinscheduler.plugin.task.sql.SqlTask.handle(SqlTask.java:158)
at org.apache.dolphinscheduler.server.worker.runner.TaskExecuteThread.run(TaskExecuteThread.java:208)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at
```
### What you expected to happen
task succeed.
### How to reproduce
1. create a sql task
2. input sql: load inpath '/path/data/dt=${dt}' into table table_name
3. save and execute task
### Anything else
task log:
```
[INFO] 2023-01-11 06:40:43.904 +0000 - Full sql parameters: SqlParameters{type='HIVE', datasource=8, sql='load inpath '/tmp/test_table/dt=${dt}'
into table test_table partition(dt=${dt})', sqlType=1, sendEmail=null, displayRows=10, limit=0, segmentSeparator=, udfs='', showType='null', connParams='null', groupId='0', title='null', preStatements=[], postStatements=[]}
[INFO] 2023-01-11 06:40:43.905 +0000 - sql type : HIVE, datasource : 8, sql : load inpath '/tmp/test_table/dt=${dt}'
into table test_table partition(dt=${dt}) , localParams : [Property{prop='dt', direct=IN, type=VARCHAR, value='$[yyyyMMdd]'}],udfs : ,showType : null,connParams : null,varPool : [] ,query max result limit 0
[INFO] 2023-01-11 06:40:43.905 +0000 - setSqlParamsMap: Property with paramName: dt put in sqlParamsMap of content load inpath '/tmp/test_table/dt=${dt}'
into table test_table partition(dt=${dt}) successfully.
[INFO] 2023-01-11 06:40:43.905 +0000 - setSqlParamsMap: Property with paramName: dt put in sqlParamsMap of content load inpath '/tmp/test_table/dt=${dt}'
into table test_table partition(dt=${dt}) successfully.
[INFO] 2023-01-11 06:40:43.906 +0000 - after replace sql , preparing : load inpath '/tmp/test_table/dt=?
into table test_table partition(dt=?)
[INFO] 2023-01-11 06:40:43.906 +0000 - Sql Params are replaced sql , parameters:20230111(VARCHAR)20230111(VARCHAR)
[INFO] 2023-01-11 06:40:43.906 +0000 - can't find udf function resource
[INFO] 2023-01-11 06:40:45.815 +0000 - prepare statement replace sql : HikariProxyPreparedStatement@1231731151 wrapping org.apache.hive.jdbc.HivePreparedStatement@2422e3
[ERROR] 2023-01-11 06:40:45.830 +0000 - execute sql error: Error while compiling statement: FAILED: ParseException line 1:5 missing DATA at 'inpath' near 'inpath' in load statement
line 1:13 mismatched input '/' expecting StringLiteral near 'inpath' in load statement
[ERROR] 2023-01-11 06:40:45.831 +0000 - sql task error
org.apache.hive.service.cli.HiveSQLException: Error while compiling statement: FAILED: ParseException line 1:5 missing DATA at 'inpath' near 'inpath' in load statement
line 1:13 mismatched input '/' expecting StringLiteral near 'inpath' in load statement
at org.apache.hive.jdbc.Utils.verifySuccess(Utils.java:264)
at org.apache.hive.jdbc.Utils.verifySuccessWithInfo(Utils.java:250)
at org.apache.hive.jdbc.HiveStatement.runAsyncOnServer(HiveStatement.java:309)
at org.apache.hive.jdbc.HiveStatement.execute(HiveStatement.java:250)
at org.apache.hive.jdbc.HiveStatement.executeUpdate(HiveStatement.java:448)
at org.apache.hive.jdbc.HivePreparedStatement.executeUpdate(HivePreparedStatement.java:119)
at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61)
at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java)
at org.apache.dolphinscheduler.plugin.task.sql.SqlTask.executeUpdate(SqlTask.java:305)
at org.apache.dolphinscheduler.plugin.task.sql.SqlTask.executeFuncAndSql(SqlTask.java:202)
at org.apache.dolphinscheduler.plugin.task.sql.SqlTask.handle(SqlTask.java:158)
at org.apache.dolphinscheduler.server.worker.runner.TaskExecuteThread.run(TaskExecuteThread.java:208)
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:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.apache.hive.service.cli.HiveSQLException: Error while compiling statement: FAILED: ParseException line 1:5 missing DATA at 'inpath' near 'inpath' in load statement
line 1:13 mismatched input '/' expecting StringLiteral near 'inpath' in load statement
at org.apache.hive.service.cli.operation.Operation.toSQLException(Operation.java:335)
at org.apache.hive.service.cli.operation.SQLOperation.prepare(SQLOperation.java:199)
at org.apache.hive.service.cli.operation.SQLOperation.runInternal(SQLOperation.java:260)
at org.apache.hive.service.cli.operation.Operation.run(Operation.java:247)
at org.apache.hive.service.cli.session.HiveSessionImpl.executeStatementInternal(HiveSessionImpl.java:541)
at org.apache.hive.service.cli.session.HiveSessionImpl.executeStatementAsync(HiveSessionImpl.java:527)
at sun.reflect.GeneratedMethodAccessor60.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.apache.hive.service.cli.session.HiveSessionProxy.invoke(HiveSessionProxy.java:78)
at org.apache.hive.service.cli.session.HiveSessionProxy.access$000(HiveSessionProxy.java:36)
at org.apache.hive.service.cli.session.HiveSessionProxy$1.run(HiveSessionProxy.java:63)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAs(Subject.java:422)
at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1730)
at org.apache.hive.service.cli.session.HiveSessionProxy.invoke(HiveSessionProxy.java:59)
at com.sun.proxy.$Proxy42.executeStatementAsync(Unknown Source)
at org.apache.hive.service.cli.CLIService.executeStatementAsync(CLIService.java:312)
at org.apache.hive.service.cli.thrift.ThriftCLIService.ExecuteStatement(ThriftCLIService.java:562)
at org.apache.hive.service.rpc.thrift.TCLIService$Processor$ExecuteStatement.getResult(TCLIService.java:1557)
at org.apache.hive.service.rpc.thrift.TCLIService$Processor$ExecuteStatement.getResult(TCLIService.java:1542)
at org.apache.thrift.ProcessFunction.process(ProcessFunction.java:39)
at org.apache.thrift.TBaseProcessor.process(TBaseProcessor.java:39)
at org.apache.hive.service.auth.TSetIpAddressProcessor.process(TSetIpAddressProcessor.java:56)
at org.apache.thrift.server.TThreadPoolServer$WorkerProcess.run(TThreadPoolServer.java:286)
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)
Caused by: java.lang.RuntimeException: org.apache.hadoop.hive.ql.parse.ParseException:line 1:5 missing DATA at 'inpath' near 'inpath' in load statement
line 1:13 mismatched input '/' expecting StringLiteral near 'inpath' in load statement
at org.apache.hadoop.hive.ql.parse.ParseDriver.parse(ParseDriver.java:223)
at org.apache.hadoop.hive.ql.parse.ParseUtils.parse(ParseUtils.java:74)
at org.apache.hadoop.hive.ql.parse.ParseUtils.parse(ParseUtils.java:67)
at org.apache.hadoop.hive.ql.Driver.compile(Driver.java:616)
at org.apache.hadoop.hive.ql.Driver.compileInternal(Driver.java:1826)
at org.apache.hadoop.hive.ql.Driver.compileAndRespond(Driver.java:1773)
at org.apache.hadoop.hive.ql.Driver.compileAndRespond(Driver.java:1768)
at org.apache.hadoop.hive.ql.reexec.ReExecDriver.compileAndRespond(ReExecDriver.java:126)
at org.apache.hive.service.cli.operation.SQLOperation.prepare(SQLOperation.java:197)
... 26 common frames omitted
```
### 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/13381 | https://github.com/apache/dolphinscheduler/pull/13378 | 05df0269f6c16c8865e69284d231698e920fe422 | 606b56403eadc77a46972c51f23365cc227edd38 | "2023-01-11T09:52:53Z" | java | "2023-05-22T03:19:30Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,353 | ["deploy/kubernetes/dolphinscheduler/templates/keda-autoscaler-worker.yaml", "deploy/kubernetes/dolphinscheduler/values.yaml", "docs/docs/en/guide/installation/kubernetes.md", "docs/docs/zh/guide/installation/kubernetes.md"] | [Feature][Worker] Use KEDA and HPA for worker auto scaling when deployed 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 feature requirement.
### Description
* Part of #13316

### Use case
* When deployed in K8S, DS worker could scale automatically by the trigger users define.
* Give an example of trigger based on the number of task in dispatch & running state.
### Related issues
* #13316
* #12436
### 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/13353 | https://github.com/apache/dolphinscheduler/pull/13367 | e660f7fc2d910628260a9dfa7a771b96e4e61efb | 366f999167feb5da65b86b48a010b754572857ef | "2023-01-07T14:58:42Z" | java | "2023-01-14T05:51:15Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,341 | ["dolphinscheduler-ui/src/common/column-width-config.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-environment-name.ts"] | [Improvement][UI] The long name of workflow instance and task instance overflow on the table. | ### 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 long name of workflow instance and task instance overflow on the table.
They look like this:


### 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/13341 | https://github.com/apache/dolphinscheduler/pull/13342 | fde2c8073e956a50ea36fc370613c3e5db85e176 | 313ba4444f8949b5335139991cc7d71cc10cd57b | "2023-01-05T04:59:45Z" | java | "2023-01-05T06:40:45Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,338 | ["dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ScheduleMapper.xml"] | [Bug] [API] when the timing data is not configured with environmental information, the timing management does not display the 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
when the timing data is not configured with environmental information, the timing management does not display the data
### What you expected to happen
Timing management displays data normally.
### How to reproduce
when the timing data is not configured with environmental information, the timing management does not display the data
### Anything else
when the timing data is not configured with environmental information, the timing management does not display the data
### 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/13338 | https://github.com/apache/dolphinscheduler/pull/13339 | a074f7e2e6cccc0370e817e784022e86fc2cef04 | fde2c8073e956a50ea36fc370613c3e5db85e176 | "2023-01-04T15:18:37Z" | java | "2023-01-05T04:15:02Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,309 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/k8s/impl/K8sTaskExecutor.java"] | [Bug] [K8s Workflow Node] The job on k8s is running, but the node shows failure | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
After the job is submitted to k8s, the node fails. (in fact, the job on k8s is running)
And I can't find any error logs.
```
...
...
[INFO] 2022-12-30 16:33:15.955 +0800 - [K8sJobExecutor-examples-68] start to submit job
[INFO] 2022-12-30 16:33:16.195 +0800 - [K8sJobExecutor-examples-68] submitted job successfully
[INFO] 2022-12-30 16:33:57.990 +0800 - Send task execute result to master, the current task status: TaskExecutionStatus{code=6, desc='failure'}
[INFO] 2022-12-30 16:33:57.990 +0800 - Remove the current task execute context from worker cache
...
...
```
Full log
```
[INFO] 2022-12-30 16:33:15.641 +0800 - Begin to pulling task
[INFO] 2022-12-30 16:33:15.708 +0800 - Begin to initialize task
[INFO] 2022-12-30 16:33:15.741 +0800 - Set task startTime: Fri Dec 30 16:33:15 CST 2022
[INFO] 2022-12-30 16:33:15.783 +0800 - Set task envFile: /opt/dolphinscheduler/conf/dolphinscheduler_env.sh
[INFO] 2022-12-30 16:33:15.784 +0800 - Set task appId: 36_68
[INFO] 2022-12-30 16:33:15.833 +0800 - End initialize task
[INFO] 2022-12-30 16:33:15.834 +0800 - Set task status to TaskExecutionStatus{code=1, desc='running'}
[INFO] 2022-12-30 16:33:15.835 +0800 - TenantCode:root check success
[INFO] 2022-12-30 16:33:15.917 +0800 - ProcessExecDir:/tmp/dolphinscheduler/exec/process/root/7826084625920/8058590247072_4/36/68 check success
[INFO] 2022-12-30 16:33:15.951 +0800 - Resources:{} check success
[INFO] 2022-12-30 16:33:15.951 +0800 - Task plugin: K8S create success
[INFO] 2022-12-30 16:33:15.951 +0800 - Success initialized task plugin instance success
[INFO] 2022-12-30 16:33:15.951 +0800 - Success set taskVarPool: null
[INFO] 2022-12-30 16:33:15.955 +0800 - [K8sJobExecutor-examples-68] start to submit job
[INFO] 2022-12-30 16:33:16.195 +0800 - [K8sJobExecutor-examples-68] submitted job successfully
[INFO] 2022-12-30 16:33:57.990 +0800 - Send task execute result to master, the current task status: TaskExecutionStatus{code=6, desc='failure'}
[INFO] 2022-12-30 16:33:57.990 +0800 - Remove the current task execute context from worker cache
[INFO] 2022-12-30 16:33:58.023 +0800 - The current execute mode isn't develop mode, will clear the task execute file: /tmp/dolphinscheduler/exec/process/root/7826084625920/8058590247072_4/36/68
```
### What you expected to happen
The k8s node is awesome, hope it works
### How to reproduce
Version: 3.1.1
Create a workflow, add k8s task nodes, and use a correct image ...
Always happens.
### 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/13309 | https://github.com/apache/dolphinscheduler/pull/13348 | 313ba4444f8949b5335139991cc7d71cc10cd57b | ba0a253f09fa55e1100a1f340eca9bde7d88a682 | "2022-12-30T10:41:29Z" | java | "2023-01-06T01:44:12Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,286 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/SchedulerController.java", "dolphinscheduler-scheduler-plugin/dolphinscheduler-scheduler-quartz/src/main/java/org/apache/dolphinscheduler/scheduler/quartz/QuartzScheduler.java"] | [Improvement][Scheduler] Use withMisfireHandlingInstructionIgnoreMisfires to handle misfire | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
When we update the scheduler, the quartz will do misfire, since the start time is less then the current data, quartz will believe we have misfired some trigger.
When we update the scheduler, we need to change the start time in quartz to avoid this.
### 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/13286 | https://github.com/apache/dolphinscheduler/pull/13285 | 5077fa6aaef436e24615ca2fef9819044df13398 | df32ef0efb20641a228b999c625f7c3db989b97b | "2022-12-28T03:11:21Z" | java | "2022-12-28T06:33:38Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,266 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/vo/ScheduleVo.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/Schedule.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ScheduleMapper.xml", "dolphinscheduler-ui/src/views/projects/workflow/definition/timing/use-table.ts"] | [Improvement][UI] Support to display extra columns such as 'Worker Group','Environment Name' and 'Alarm Group' on the page of cron manage. | ### 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 to display extra columns such as 'Worker Group','Environment Name' and 'Alarm Group' on the page of cron manage.


### 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/13266 | https://github.com/apache/dolphinscheduler/pull/13267 | fb67b085a352c6d8596e5b9d4b33ef370b604dc5 | a235d3cd6a0f889b4793f81b07aaa73ba23c2412 | "2022-12-23T02:59:49Z" | java | "2022-12-23T07:24:59Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,263 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-sagemaker/src/main/java/org/apache/dolphinscheduler/plugin/task/sagemaker/PipelineUtils.java"] | [Bug] [Task Plugin] Synchronization status failure in SageMaker 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
Can not stop the task in DolphinScheduler when stopping the task in Sagemaker platform
### What you expected to happen
empty
### How to reproduce
empty
### Anything else
empty
### 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/13263 | https://github.com/apache/dolphinscheduler/pull/13264 | 4e09bacb17c5a5d554815be03916960f354d45a1 | df491f78cc0830b7fe19cb01581673d5c5dc9cf0 | "2022-12-22T10:18:18Z" | java | "2022-12-22T12:17:17Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,262 | ["dolphinscheduler-ui/src/views/projects/task/instance/use-table.ts", "dolphinscheduler-ui/src/views/projects/workflow/definition/use-table.ts", "dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts"] | [Improvement][UI] Support to open a new page to visit the detail page after clicking a link. | ### 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
I expect that the frontend can support to open a new page to visit the detail page after clicking a link.

### 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/13262 | https://github.com/apache/dolphinscheduler/pull/13265 | df491f78cc0830b7fe19cb01581673d5c5dc9cf0 | fb67b085a352c6d8596e5b9d4b33ef370b604dc5 | "2022-12-22T10:16:47Z" | java | "2022-12-23T02:48:21Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,260 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ProcessDefinitionServiceTest.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/ProcessDefinition.java"] | [Bug] [API] When querying the list of workflow definitions the api response result lacks the value of user 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
When querying the list of workflow definitions the api response result lacks the value of user name.

### What you expected to happen
I expect that the user name of workflow definition can be displayed.
### How to reproduce
1.Visit the workflow definition.
2.Look at the column 'Create User' on the table of workflow definitions.
### 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/13260 | https://github.com/apache/dolphinscheduler/pull/13261 | a235d3cd6a0f889b4793f81b07aaa73ba23c2412 | a98cae70651af32fe83ad7206388b8fcd9698059 | "2022-12-22T09:53:01Z" | java | "2022-12-23T11:22:08Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,253 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/WorkFlowLineageMapper.xml"] | [Improvement] [API] The downstream workflow is started, although it is not online | ### 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 performed complement operation, the downstream workflow is started, although it is not online.
### What you expected to happen
Start the downstream workflow when it is online
### How to reproduce
Performs the complement operation when set complementDependentMode=ALL_DEPENDENT,downstream workflow is offline.
### Anything else
_No response_
### Version
3.1.2
### 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/13253 | https://github.com/apache/dolphinscheduler/pull/13257 | 04785dc799200d052fa7367ca4a5ebbd9784f036 | a75a69f3ec850236128e208351d323767fcba64a | "2022-12-22T06:27:14Z" | java | "2022-12-26T03:58:37Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,248 | ["dolphinscheduler-ui/src/common/common.ts", "dolphinscheduler-ui/src/common/types.ts", "dolphinscheduler-ui/src/service/modules/process-instances/types.ts", "dolphinscheduler-ui/src/store/project/types.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-dependent.ts", "dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts"] | [Bug] [UI] Failed to query task instances by some state of 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
When querying the task instance by a certain task state on the page of task instance the page notified a message that is "query task list paging error". It looks like the image below.

### What you expected to happen
I expect that everything is going well.
### How to reproduce
1. Visit the page of task instance.
2. Choose an option of 'Serial wait' in the list of state.
3. And then click the query button.
4. You will see the error.
### 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/13248 | https://github.com/apache/dolphinscheduler/pull/13251 | de6bc56aee6194290c43d21bee15091d0dabf856 | 4e09bacb17c5a5d554815be03916960f354d45a1 | "2022-12-22T02:23:11Z" | java | "2022-12-22T09:17:23Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,226 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-dependent-timeout.ts"] | [Bug] [UI] Failed to enable DEPENDENT node timeout alarm | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
Create a dependent node, turn on the timeout alarm and click OK, reopen the node and find that the timeout alarm has not been turned on。
<img width="659" alt="Snipaste_2022-12-20_10-13-27" src="https://user-images.githubusercontent.com/32809232/208564986-7934f30f-eb62-4d7b-a049-605503d34acd.png">
<img width="667" alt="Snipaste_2022-12-20_10-14-05" src="https://user-images.githubusercontent.com/32809232/208565024-11188b7c-2f46-45f4-85a1-ef701e5c0cbf.png">
### What you expected to happen
I hope the timeout alarm can be fixed
### How to reproduce
Create a dependent node, and then turn on the timeout alarm。
### Anything else
no
### 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/13226 | https://github.com/apache/dolphinscheduler/pull/13234 | 915bdf481d23b50c87cb43ab8a85c5dcee1d43ab | d795a7a0a33399426fedc8f91098467e4050b68e | "2022-12-20T02:16:33Z" | java | "2022-12-21T08:18:10Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,223 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/constants/Constants.java", "dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/FileUtils.java", "dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/utils/FileUtilsTest.java", "dolphinscheduler-dao/pom.xml", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/utils/TaskCacheUtils.java", "dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/utils/TaskCacheUtilsTest.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/consumer/TaskPriorityQueueConsumer.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/utils/TaskFilesTransferUtils.java"] | [Improvement][Master] Validate same content of input file when using task cache | ### 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
Task cache mechanism is introduced in https://github.com/apache/dolphinscheduler/pull/13194. Cache key can make sure tasks have the same value of property (store resource path in file paramter), but the same resource path doesn't mean the same file contents. Also, the different resource path may have same content.
For other types of parameter, the same value of property means the same input, keep logic consistency for file parameter, we should check the same content in resourcePath.
Maybe we can add checksum of input file when generating cache key. In addition, i think it's improper to download the whole file in master, we can save checksum in another file when uploading output file, download checksum file when generating cache key.
### 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/13223 | https://github.com/apache/dolphinscheduler/pull/13298 | 8a479927f35daa21713a58212503a899012e4df2 | ccad56e88eb21d960baf68b870c7c0dc7b260f63 | "2022-12-19T04:54:34Z" | java | "2023-01-03T03:38:13Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,197 | ["dolphinscheduler-datasource-plugin/dolphinscheduler-datasource-api/src/main/java/org/apache/dolphinscheduler/plugin/datasource/api/plugin/DataSourceProcessorProvider.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-procedure/src/main/java/org/apache/dolphinscheduler/plugin/task/procedure/ProcedureTask.java"] | [Bug] [ProceducerTask] Remove datasource in procedure 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
Right now, we use datasource in procedure task, this will cause we cannot use TEMPORARY TABLE in procedure, since the temporary table will be release after the connection session close. But in datasource the session will not be closed, so the temporary will be share in different task.
### What you expected to happen
xx
### How to reproduce
In different task call the procedure.
```
CREATE PROCEDURE `temporary_table`()
BEGIN
CREATE TEMPORARY TABLE str_spilt_result
(
id BIGINT(20) NOT NULL
);
SELECT * from str_spilt_result;
END;
```
### 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/13197 | https://github.com/apache/dolphinscheduler/pull/13198 | 5cd8a02f873c11939288aeae717e04a05732d159 | b2336b0ce9e3ebbe57a92969c57a613964e5ccf2 | "2022-12-15T06:24:58Z" | java | "2022-12-19T09:14:59Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,187 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-openmldb/src/main/java/org/apache/dolphinscheduler/plugin/task/openmldb/OpenmldbParameters.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-openmldb/src/main/java/org/apache/dolphinscheduler/plugin/task/openmldb/OpenmldbTask.java"] | [Bug] [Task] OpenMLDB Task can't work | ### 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 OpenmldbTask will be failed, throw null exception in any situation.
### What you expected to happen
OpenmldbTask extends PythonTask, add a new parameter var `openmldbParameters`, and doesn't init the member `pythonParameters`, but after 6e224d0 PythonTask will use `pythonParameter` in `handle()`. So it'll throw the null exception.
We should make `OpenmldbParameters` extends `PythonParameters`, to avoid breaking changes in `PythonTask`.
### How to reproduce
Add a openmldb task and run
### 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/13187 | https://github.com/apache/dolphinscheduler/pull/13190 | 84b5d810425f7bb23cc5a179d3dedeb295daa06d | 43e6ac32ddc468c57633162a5cd442a70f418c18 | "2022-12-14T07:06:46Z" | java | "2022-12-14T12:13:45Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,160 | ["dolphinscheduler-ui/src/views/projects/task/components/node/format-data.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/types.ts"] | [Bug] [UI] After modifying a few of fields on a dependent task form and canceling the task modal, these values of fields wouldn't be reset. | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
After modifying a few of fields on a dependent task form and canceling the task modal, these values of fields wouldn't be reset. When opening this modal one more time, you can also see those modified values.
Open a dependent task modal and choose a new project name for the dependent task:


Then cancel the modal and open the task again:

### What you expected to happen
When canceling the task modal all modified values should be restored.
### How to reproduce
Open a dependent task modal and choose a new project name for the dependent task. And then cancel the modal and open the task again. You'll see this issue.
### 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/13160 | https://github.com/apache/dolphinscheduler/pull/13179 | e4b9b67255528d1401f031905e8db07bb51aa580 | c9053761bd5df6060736d216169a7c8c1a25e597 | "2022-12-12T10:58:32Z" | java | "2022-12-13T10:15:00Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,144 | ["dolphinscheduler-ui/src/common/common.ts", "dolphinscheduler-ui/src/common/types.ts", "dolphinscheduler-ui/src/locales/en_US/project.ts", "dolphinscheduler-ui/src/locales/zh_CN/project.ts", "dolphinscheduler-ui/src/views/projects/workflow/instance/components/process-instance-condition.tsx"] | [Bug] [API] Failed when querying based on workflow status | ### 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 query a workflow based on its state the query fails, I figure out it's a missing enum value in the code.
<img width="1652" alt="企业微信截图_33ed92af-871c-4892-9a87-f49fe9cca9d6" src="https://user-images.githubusercontent.com/32809232/206623657-50a08206-6dca-455f-9460-b96204083277.png">
<img width="1680" alt="企业微信截图_aabe923b-1004-4093-94fd-5dbdb28df08b" src="https://user-images.githubusercontent.com/32809232/206623753-e06e70c2-87fc-4bb4-8725-cabfbd7bf63c.png">
### What you expected to happen
xx
### How to reproduce
When the workflow filter type is kill, waiting for thread, waiting for dependency, delay execution, etc., the query will fail
### 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/13144 | https://github.com/apache/dolphinscheduler/pull/13243 | c213c6fe34646a36e9ae422b686b410c0a944ad3 | 3ecb4dbe24fa85b5cb070841b14cb629edd99491 | "2022-12-09T04:28:55Z" | java | "2022-12-22T01:21:54Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,140 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteRunnable.java"] | [Improvement][Master] Get varPool from upstream tasks instead of processInstance if dag is incomplete | ### 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 restarting failed task, dag is incomplete, the failed task can not get preTask from dag. But in `getPreVarPool ` method, our implement method is to get the `varPool` from `processInstance` because preTask is empty. This will lead to some unknown errors. For example, ` varPool` in `processInstance` is updated by something else.
I think we can find the actual upstream tasks from the database or other places.
```java
public void getPreVarPool(TaskInstance taskInstance, Set<String> preTask) {
Map<String, Property> allProperty = new HashMap<>();
Map<String, TaskInstance> allTaskInstance = new HashMap<>();
if (CollectionUtils.isNotEmpty(preTask)) {
for (String preTaskCode : preTask) {
Integer taskId = completeTaskMap.get(Long.parseLong(preTaskCode));
if (taskId == null) {
continue;
}
TaskInstance preTaskInstance = taskInstanceMap.get(taskId);
if (preTaskInstance == null) {
continue;
}
String preVarPool = preTaskInstance.getVarPool();
if (StringUtils.isNotEmpty(preVarPool)) {
List<Property> properties = JSONUtils.toList(preVarPool, Property.class);
for (Property info : properties) {
setVarPoolValue(allProperty, allTaskInstance, preTaskInstance, info);
}
}
}
if (allProperty.size() > 0) {
taskInstance.setVarPool(JSONUtils.toJsonString(allProperty.values()));
}
} else {
if (StringUtils.isNotEmpty(processInstance.getVarPool())) {
taskInstance.setVarPool(processInstance.getVarPool());
}
}
}
```
### 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/13140 | https://github.com/apache/dolphinscheduler/pull/13255 | 14ec4a239813be6dfeedb919f5fbff28eb5ec9dc | 2e95a020abb89f1958870bd79dbca41d71adc9c2 | "2022-12-09T01:56:00Z" | java | "2022-12-22T07:51:40Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,122 | ["dolphinscheduler-ui/src/views/projects/task/definition/use-table.ts", "dolphinscheduler-ui/src/views/projects/task/instance/use-table.ts", "dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts"] | [Improvement][UI] Suggest to add a feature that users can resize the column width of tables like 'Workflow Instance','Task Definition' and 'Task Instance'. | ### 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
Suggest to add a feature that users can resize the column width of tables like 'Workflow Instance','Task Definition' and 'Task Instance'.
### 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/13122 | https://github.com/apache/dolphinscheduler/pull/13123 | 82c86a985e4916b92f90cac273b41d3a26b28a5c | 26b7541d954ba63deb37e89479ab4d648573e8ae | "2022-12-07T07:54:19Z" | java | "2022-12-07T09:44:10Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,105 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/TaskDefinitionController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/TaskDefinitionService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TaskDefinitionServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/TaskDefinitionServiceImplTest.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/TaskDefinitionMapper.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskDefinitionMapper.xml", "dolphinscheduler-ui/src/views/projects/task/definition/batch-task.tsx"] | [Improvement][dolphinscheduler-api] optimization task definition & fix in the task definition list, if one task have more pre task, the task list can't show all task | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
in the task definition, delete search workflow name filter, and fix in the task definition list, if one task have more pre task, the task list can't show all task
### 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/13105 | https://github.com/apache/dolphinscheduler/pull/13106 | d9f43adafdc6a0db3d17777fa8432122bd2acc9e | cb8d125e0f5c099078af7f1629cbdfeec0692951 | "2022-12-05T15:27:59Z" | java | "2022-12-07T01:52:53Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,089 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/SchedulerServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/SchedulerServiceTest.java", "dolphinscheduler-ui/src/views/projects/workflow/definition/components/use-form.ts"] | [Bug] [Server] Once click online schedule time, task will be automatically scheduled | ### 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
v3.0.2
For a workflow with a schedule time, on the `Cron management` page, when we click offline and then click online, and the task will be automatically scheduled once.
<img width="1135" alt="image" src="https://user-images.githubusercontent.com/18065113/205472202-3131a018-14bf-4016-8e55-bbae9be1ca8e.png">
### What you expected to happen
Expected workflow won't be schedule when just click online
### How to reproduce
we click offline and then click online on the `Cron management` page
### Anything else
_No response_
### Version
3.0.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/13089 | https://github.com/apache/dolphinscheduler/pull/13092 | df32ef0efb20641a228b999c625f7c3db989b97b | 7497b26979ec1ba5c473c99d8e51a97c91250f25 | "2022-12-04T03:06:54Z" | java | "2022-12-28T06:51:59Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,084 | ["dolphinscheduler-ui/src/views/projects/task/instance/use-table.ts"] | [Improvement] [UI] The task instance page, when the host is null, download log button should not be enabled. | ### 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 instance page, when the host is null, download log button should not be enabled.

Click will throw exception:
`{"code":null,"msg":"task instance is null or host is null","data":null,"failed":true,"success":false}`
### What you expected to happen
The download log button should be disabled like the view button on the left.
### How to reproduce
Make the task instance state `NEED_FAULT_TOLERANCE`
### 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/13084 | https://github.com/apache/dolphinscheduler/pull/13090 | 917df4f6ca9513f0d535f5c3b8ceb372a0ad9966 | 58d21abfa166cb8c93ca4ff511f769dd147b2aff | "2022-12-02T17:35:53Z" | java | "2022-12-10T04:34:35Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,066 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TaskDefinitionServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/TaskDefinitionServiceImplTest.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/repository/ProcessTaskRelationLogDao.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/repository/impl/ProcessTaskRelationLogDaoImpl.java"] | [Bug] [dolphinscheduler-api] in the task definition list, can't just modify upstream task list | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
in the task definition list, can't just modify upstream task list
### What you expected to happen
can modify
### How to reproduce
in the task definition list, select edit, just modify upstream task list
### 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/13066 | https://github.com/apache/dolphinscheduler/pull/12722 | a843e0b96d10dc23907318479b385b95038bcd4d | 8439b5dc69f2a7dfc1043393bbbb21a8277715da | "2022-12-01T03:09:05Z" | java | "2023-01-15T11:58:47Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,052 | ["docs/docs/en/guide/task/seatunnel.md", "docs/docs/zh/guide/task/seatunnel.md", "dolphinscheduler-task-plugin/dolphinscheduler-task-seatunnel/src/main/java/org/apache/dolphinscheduler/plugin/task/seatunnel/DeployModeEnum.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-seatunnel/src/main/java/org/apache/dolphinscheduler/plugin/task/seatunnel/EngineEnum.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-seatunnel/src/main/java/org/apache/dolphinscheduler/plugin/task/seatunnel/SeatunnelTaskChannel.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-seatunnel/src/main/java/org/apache/dolphinscheduler/plugin/task/seatunnel/self/SeatunnelEngineParameters.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-seatunnel/src/main/java/org/apache/dolphinscheduler/plugin/task/seatunnel/self/SeatunnelEngineTask.java", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-deploy-mode.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-sea-tunnel.ts"] | [Feature][Task Plugin] Support Apache Seatunnel Connector-V2 | ### 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/13052 | https://github.com/apache/dolphinscheduler/pull/13086 | d772f2492b83e38c6615f4e48d6c6253f7ef74bc | 4439c1ec9096bd4ae3a7e4ad7edb939992a4f7ce | "2022-11-30T06:38:46Z" | java | "2023-04-08T14:02:19Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,045 | ["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/StateEventType.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/event/WorkflowStartEventHandler.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/event/WorkflowStateEventHandler.java"] | [Improvement][Master] add max submit times of 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 submit workflow failure , will resubmit workflow . if have not maximum number of submissions,will cause print a lot log which takes up a lot of resources
### 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/13045 | https://github.com/apache/dolphinscheduler/pull/13051 | e8b20def544a203bb9c927e19dae531b6f98d512 | 701d67c831227ae71d0ce903fe814f37548319c9 | "2022-11-29T12:32:59Z" | java | "2023-02-20T06:10:59Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,043 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/event/TaskRetryStateEventHandler.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/StateWheelExecuteThread.java"] | [Bug] [task retry] Clone retry task Instance missing id field | ### 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 WorkflowExecuteRunnable. NewTaskInstance (), lack of the set id field.
task retry causes the NPE to occur.
NPE location: StateWheelExecuteThread. addTaskRetryEvent() set taskInstanceId
### What you expected to happen
The task instance can retry properly
### How to reproduce
task set retry
### 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/13043 | https://github.com/apache/dolphinscheduler/pull/13077 | fed1e85fb833bf5dec9de36b5a539885c2da1ee3 | a7ecc5a8b31d63bb71615d59aeffddc60e59f5aa | "2022-11-29T08:48:45Z" | java | "2022-12-05T13:22:51Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,018 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ProcessInstanceController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/WorkflowInstanceV2Controller.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessInstanceServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/TaskInstanceV2ControllerTest.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-linkis/src/main/java/org/apache/dolphinscheduler/plugin/task/linkis/LinkisTask.java", "pom.xml"] | [Bug] [Style] `Wildcard imports check` fails to catch `import static xxx;\n` | ### 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
* `Spotless wildcard imports check` fails to catch `import static xxx;\n`
* https://github.com/apache/dolphinscheduler/pull/12990#discussion_r1033161031
### What you expected to happen
* `import static xxx;\n` should be caught by CI.
### How to reproduce
* See the hyper link 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/13018 | https://github.com/apache/dolphinscheduler/pull/13067 | 12a6138d3343a489069ddf98c48f61957801b167 | c2ae76c0bd6a115164002cfff3be10e16aa0eeb9 | "2022-11-28T06:21:14Z" | java | "2022-12-01T06:15:28Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,010 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-flink-stream/src/test/java/org/apache/dolphinscheduler/plugin/task/flink/FlinkArgsUtilsTest.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-flink/src/main/java/org/apache/dolphinscheduler/plugin/task/flink/FlinkArgsUtils.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-flink/src/main/java/org/apache/dolphinscheduler/plugin/task/flink/FlinkConstants.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-flink/src/test/java/org/apache/dolphinscheduler/plugin/task/flink/FlinkArgsUtilsTest.java", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-flink.ts"] | [Bug] [Task] The Flink SQL task page selects the pre-job deployment mode, but the task executed by the worker is the Flink local 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
The Flink SQL task page selects the pre-job deployment mode, but the task executed by the worker is the Flink local mode.
### What you expected to happen
The Flink SQL task page selects the pre-job deployment mode, and the task executed by the worker is the Flink per-job mode
### How to reproduce
Select the Flink task type, use SQL, select per-job as the deployment mode, execute this task, and view the flink tasks started by the worker.
### 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/13010 | https://github.com/apache/dolphinscheduler/pull/13011 | 1a8811cb419551045d0d05b99116e2d2560d6a6f | ae670e6e1c0c0bcd645ab3e1776eca75b9765b8c | "2022-11-26T14:38:22Z" | java | "2022-11-28T02:09:49Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 13,008 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-dependent.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/format-data.ts", "dolphinscheduler-ui/src/views/projects/task/components/node/types.ts"] | [Bug] [Master] When using the complement function, turn on the dependent mode to generate multiple unrelated workflow instances | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
When using the complement function, turn on the dependent mode to generate multiple unrelated workflow instances.
I found that the definitionCodeOptions data is included in the parameters of the dependent task node in the database, causing problems for tasks that depend on this workflow definition downstream of the query
<img width="858" alt="image" src="https://user-images.githubusercontent.com/37063904/204091283-f8369a61-0452-47e9-a34e-7ab75df3afcf.png">
### What you expected to happen
Use the complement function to open the dependency model and generate downstream workflow instances that depend on this workflow definition.
### How to reproduce
In a workflow definition with dependent tasks, click the dependent task node, select different workflows for different projects in the original dependency relationship, and click Cancel. Then click Save to view and update the workflow definition interface input parameter contains definitionCodeOptions data
### 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/13008 | https://github.com/apache/dolphinscheduler/pull/13009 | e5f4ee2d643d0c6419c4347a59e327a346eed5e4 | 597ae5ff7ce68251d6194ed757e680e2575cdc71 | "2022-11-26T13:47:54Z" | java | "2022-11-27T03:14:00Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,997 | ["dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/ProcessInstance.java"] | [Bug] [API] The workflow instance clicks the rerun button, and the end time is the end time of the last 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
The workflow instance clicks the rerun button, and the end time is the end time of the last instance.
<img width="1181" alt="iShot_2022-11-25_17 00 46" src="https://user-images.githubusercontent.com/37063904/203942380-f4f70834-5540-4302-bbee-1f6e828207fd.png">
### What you expected to happen
When the workflow instance clicks the rerun button, the end time is reset to null.
### How to reproduce
The workflow instance clicks the rerun button and observes the end time of the instance.
### 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/12997 | https://github.com/apache/dolphinscheduler/pull/12998 | d480c271ec7d86b3af1a6132b88bbb2cdcabc558 | f9a0ecbc81a5a63b4265983e41b05281db14b772 | "2022-11-25T09:06:34Z" | java | "2022-11-27T07:08:30Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,994 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/AbstractCommandExecutor.java"] | [Bug] [Worker] kill process 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
When I execute a shell task, a workflow instance will be generated, click the stop button on the workflow instance, and check the status of the shell task instance on the page is KILL, but I found that the shell task is still executing and has not been Killed.
shell task definition
<img width="639" alt="image" src="https://user-images.githubusercontent.com/37063904/203911534-72c32290-5904-45de-bf45-e0a851e5abf8.png">
shell task instance
<img width="1182" alt="image" src="https://user-images.githubusercontent.com/37063904/203911588-c2cdc9b1-300d-436f-994d-b0df0cbbf09b.png">
shell task instance log
<img width="896" alt="image" src="https://user-images.githubusercontent.com/37063904/203911733-3585fb95-fa89-4449-abb4-cf2443aaf45c.png">
I have killed the task at 02 minutes, and the status of the task instance is KILL, but the task instance log is still executing after 02 minutes, and the execution is successful.
### What you expected to happen
The task is actually killed.
### How to reproduce
Create a workflow definition with only one shell task inside. Execute this workflow definition manually, click the stop button on the generated workflow instance, and view the status and logs of the task instance.
### 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/12994 | https://github.com/apache/dolphinscheduler/pull/12995 | 43719f7c15008f2e72268ce5058069e7c43b67ed | d480c271ec7d86b3af1a6132b88bbb2cdcabc558 | "2022-11-25T05:58:41Z" | java | "2022-11-27T06:27:48Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,973 | ["dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskInstanceMapper.xml"] | [Improvement][API] The task instance list is sorted by submission time | ### 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 current task instance list is sorted according to the task start time, but some task start times are empty, and this batch of tasks will always be at the top of the task instance list. When there is a large amount of data, it will greatly affect the viewing of data.
<img width="1473" alt="iShot_2022-11-23_11 07 41" src="https://user-images.githubusercontent.com/37063904/203462534-9f33293d-09ba-4066-a0e5-813f29485cf1.png">
### 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/12973 | https://github.com/apache/dolphinscheduler/pull/12974 | 04ef87d1d9bfc8097ad7ffd6b30e49554c685b01 | 31021730ec78d8de1b55a3471ca713995052105b | "2022-11-23T03:13:32Z" | java | "2022-11-24T10:59:53Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,963 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/utils/DependentExecute.java"] | [Bug] [Master] Dependent task node null pointer exception | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
<img width="1395" alt="image" src="https://user-images.githubusercontent.com/37063904/203247835-598e1825-93f8-4eab-832e-374b0b77014b.png">
### What you expected to happen
Dependent task node to check that the status of the upstream task is normal
### How to reproduce
There are two workflow definitions: w1, w2. In the workflow definition w2, use the dependent task node to select the workflow definition w1, and the time is today.
Trigger w1 regularly to generate a w1-1 workflow instance to keep the task running; manually generate a w1-2 workflow instance to keep the task running. A workflow instance of w2 is generated regularly, and a null pointer exception will be reported if the dependent task node.
### 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/12963 | https://github.com/apache/dolphinscheduler/pull/12965 | 31021730ec78d8de1b55a3471ca713995052105b | 50779ea1e6acdbca721dcc3d6331e13687ac9544 | "2022-11-22T07:22:04Z" | java | "2022-11-24T11:00:46Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,962 | ["docs/docs/en/guide/task/sqoop.md"] | [Bug] [DOC] fix doc lead CI failed | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
<img width="1898" alt="image" src="https://user-images.githubusercontent.com/31528124/203250179-44f18ebc-2fe3-4d1a-83ff-6ba028a3a898.png">
### 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/12962 | https://github.com/apache/dolphinscheduler/pull/12964 | 2f8f0952fb6e45b84437e9f651096858d856bd96 | bd1efccc9a4f451c30e0c74c9bd5d279167ffef6 | "2022-11-22T07:21:01Z" | java | "2022-11-22T07:37:19Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,958 | ["docs/docs/en/guide/parameter/context.md", "docs/docs/zh/guide/parameter/context.md", "docs/img/new_ui/dev/parameter/python_context_param.png", "dolphinscheduler-task-plugin/dolphinscheduler-task-python/src/main/java/org/apache/dolphinscheduler/plugin/task/python/PythonTask.java"] | [Bug] [Task Plugin] Python task can not pass the parameters to downstream task. | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened

Can’t work
### What you expected to happen
empty
### How to reproduce
empty
### 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/12958 | https://github.com/apache/dolphinscheduler/pull/12961 | bd1efccc9a4f451c30e0c74c9bd5d279167ffef6 | 6e224d08a22b0d9e67059bae69087038f7ba7394 | "2022-11-22T06:34:57Z" | java | "2022-11-22T08:11:45Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,954 | ["docs/docs/en/guide/task/sqoop.md", "dolphinscheduler-scheduler-plugin/dolphinscheduler-scheduler-quartz/src/main/java/org/apache/dolphinscheduler/scheduler/quartz/ProcessScheduleTask.java"] | [Bug] [Schedule] When timing triggers execution, the configured workflow-level environment information 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
When timing triggers execution, the configured workflow-level environment information does not take effect.
### What you expected to happen
When timing triggers execution, the workflow configuration environment information is effective.
### How to reproduce
When timing triggers execution, the configured workflow-level environment information does not take effect.
### 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/12954 | https://github.com/apache/dolphinscheduler/pull/12955 | 3747029cc06cef2c3dd5063b3dc303585627400b | 2f8f0952fb6e45b84437e9f651096858d856bd96 | "2022-11-22T01:42:51Z" | java | "2022-11-22T07:35:29Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,943 | ["dolphinscheduler-ui/package.json", "dolphinscheduler-ui/pnpm-lock.yaml", "dolphinscheduler-ui/src/views/projects/workflow/definition/use-table.ts"] | [Improvement][UI] Suggest to add a feature that users can drag the column of workflow name to resize its width. | ### 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 workflow name on the page of workflow definition could be too long to see its name at times. Although providing the tooltip to see the whole name, it's still kind of less convenient. So I'd suggest to add a feature that users can drag the column of workflow name to resize its width.
<img width="1509" alt="image" src="https://user-images.githubusercontent.com/4928204/202849833-c932f86e-c4f6-4ee8-ad56-0be144b7760d.png">
### 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/12943 | https://github.com/apache/dolphinscheduler/pull/13006 | 7336afaa65e3c4bb4596081cf0049b5166506a0c | e5f4ee2d643d0c6419c4347a59e327a346eed5e4 | "2022-11-19T12:03:46Z" | java | "2022-11-27T03:09:45Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,932 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThreadPool.java"] | [Bug] [Master] when subprocess's processInstance is fail,not notify parent processInstance | ### 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 subprocess's process Instance 's state changed to fail, match the task instance‘s state is still SUBMITTED_SUCCESS in the parent process instance
### What you expected to happen
notify master to change state in parent process instance
### How to reproduce
notify master to change state in parent 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/12932 | https://github.com/apache/dolphinscheduler/pull/12933 | d09e02e5a92f0f6a70d053128e280be1143a567b | 3747029cc06cef2c3dd5063b3dc303585627400b | "2022-11-18T06:02:43Z" | java | "2022-11-22T07:07:50Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,927 | ["docs/docs/en/guide/parameter/context.md", "docs/docs/zh/guide/parameter/context.md", "dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/parameters/AbstractParameters.java"] | [Bug] [Worker The parameter setting of the same out type is invalid multiple times. | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
The same name out type parameter setting is invalid multiple times( use first)
### What you expected to happen
The same type parameter setting uses the latest value multiple times
### How to reproduce
Use sql to modify values for the same out type multiple times
### 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/12927 | https://github.com/apache/dolphinscheduler/pull/12930 | f5801a0e1c8bebc900d75aab8ca3314bc0410c6b | 560d232cbdea88e3ef1ede51fd55c8eb0e87594d | "2022-11-17T03:50:32Z" | java | "2022-12-12T03:07:23Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,916 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/LoggerController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/LoggerService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/LoggerServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessInstanceServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/LoggerServiceTest.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ProcessInstanceServiceTest.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.xml"] | [Bug] [Log] User can query or download other user's log | ### 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
User can query or download other user's log
### What you expected to happen
There's permission control in loggerService.
### How to reproduce
User (not admin) query the log of a task instance which is created by other user.
<img width="1386" alt="截屏2022-11-16 09 55 30" src="https://user-images.githubusercontent.com/38122586/202098814-7afaea49-0a57-43be-8476-ea56da0a28d2.png">
### 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/12916 | https://github.com/apache/dolphinscheduler/pull/12917 | 3106054ea78a0036069d1860a228723519efab38 | 7336afaa65e3c4bb4596081cf0049b5166506a0c | "2022-11-16T06:14:30Z" | java | "2022-11-25T09:59:28Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,908 | ["dolphinscheduler-worker/src/main/bin/start.sh"] | [Bug] [Worker] Execute shell task exception no dolphinscheduler_env.sh file execute permission | ### 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
Execute shell task exception no dolphinscheduler_env.sh file execute permission.

### What you expected to happen
Execute the shell task to execute the dolphinscheduler_env.sh file normally.
### How to reproduce
Restart the worker-server service, execute shell tasks, and view task logs.
### 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/12908 | https://github.com/apache/dolphinscheduler/pull/12909 | 7c90bf01bcd19949f7e3c3a92f7169093ef3700c | 401fb4edd4760abbad5f569446bb421c6f096da1 | "2022-11-15T13:20:21Z" | java | "2022-11-17T13:43:35Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,907 | ["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/dispatch/host/LowerWeightHostManager.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/registry/ServerNodeManager.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/task/MasterHeartBeatTask.java", "dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/task/WorkerHeartBeatTask.java"] | [Improvement][Log] Adjust WorkerHeartBeatTask log level. | ### 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
Please check the following screenshot, i think these heartbeat log should be `debug`, not `info`. Frequent normal heartbeat logs will interfere with user focus


### 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/12907 | https://github.com/apache/dolphinscheduler/pull/12980 | a2ff140f43a19eb0e9661ce6b1dbffe14fcdd11e | 3106054ea78a0036069d1860a228723519efab38 | "2022-11-15T12:56:38Z" | java | "2022-11-25T09:37:30Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,896 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/DataSourceServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/DataSourceServiceTest.java"] | [Improvement][Datasource]It is unnecessary to check the validity when saving the data source | ### 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 is unnecessary to check the validity when saving the data source.
Eg:
The datasource is only open to the specified worker, but we cannot connect it from API-SERVER.
### 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/12896 | https://github.com/apache/dolphinscheduler/pull/12900 | d02991a2e6332609e6d745d769f5bebbe17ed78f | 528f45acc5a899d96dbe7caca1a05f8174648e2f | "2022-11-14T11:33:54Z" | java | "2022-11-17T06:23:12Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,866 | ["dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/java/org/apache/dolphinscheduler/alert/AlertSenderService.java"] | [Bug] [Alert] Ignore alert not write info to db | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
Alert warning type does not match instance, will ignore this alert, but not write correct into the back to DB.
### What you expected to happen
When the alert warning type does not match the instance, write the correct info to DB.
### How to reproduce
⬆️
### 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/12866 | https://github.com/apache/dolphinscheduler/pull/12867 | 2dbc79693e99f7a10d8bddeef691d9321dc5f10c | d02991a2e6332609e6d745d769f5bebbe17ed78f | "2022-11-11T07:30:13Z" | java | "2022-11-17T06:14:12Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,865 | ["dolphinscheduler-alert/dolphinscheduler-alert-api/src/main/java/org/apache/dolphinscheduler/alert/api/AlertInputTips.java", "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-feishu/src/main/java/org/apache/dolphinscheduler/plugin/alert/feishu/FeiShuAlertChannelFactory.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-http/src/main/java/org/apache/dolphinscheduler/plugin/alert/http/HttpAlertChannelFactory.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-script/src/main/java/org/apache/dolphinscheduler/plugin/alert/script/ScriptAlertChannelFactory.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-slack/src/main/java/org/apache/dolphinscheduler/plugin/alert/slack/SlackAlertChannelFactory.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-telegram/src/main/java/org/apache/dolphinscheduler/plugin/alert/telegram/TelegramAlertChannelFactory.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-webexteams/src/main/java/org/apache/dolphinscheduler/plugin/alert/webexteams/WebexTeamsAlertChannelFactory.java", "dolphinscheduler-alert/dolphinscheduler-alert-plugins/dolphinscheduler-alert-wechat/src/main/java/org/apache/dolphinscheduler/plugin/alert/wechat/WeChatAlertChannelFactory.java"] | [Bug] [Alert] translate alert input field tips to chinese when using chinese | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
the alert input field tips is in English when the UI using Chinese as language.

### What you expected to happen
the input field tips should be Chinese when using the language
### How to reproduce
check alert instance page
### 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/12865 | https://github.com/apache/dolphinscheduler/pull/12879 | 403c6a6bb6ec9fc380ffd763301891ad57029e2b | 250d81bcf81bc4432f832197e1f96ad440944d5d | "2022-11-11T06:45:13Z" | java | "2022-11-14T03:14:14Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,856 | ["dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/mapper/UdfFuncMapperTest.java"] | [Improvement][UT] Refactor duplicated code fragment in `UdfFuncMapperTest` | ### 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 ut of UdfFuncMapperTest
### 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/12856 | https://github.com/apache/dolphinscheduler/pull/12857 | 713046b04328edd10c06711a39092f739298c6c6 | 83f9588eb07832f058c3fafe990a997069baf68f | "2022-11-10T07:12:10Z" | java | "2022-11-15T14:59:11Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,853 | ["dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/permission/ResourcePermissionCheckServiceTest.java"] | [Improvement][UT] Improve the ut of ResourcePermissionCheckServiceTest | ### 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 ut of ResourcePermissionCheckServiceTest
### 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/12853 | https://github.com/apache/dolphinscheduler/pull/12854 | 27c37b882840e4e373d966858e27793686bdc94c | 20518682bbc1970f3250ece24c35bddf35241a98 | "2022-11-10T06:24:27Z" | java | "2022-11-19T07:12:12Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,850 | ["dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/mapper/DataSourceMapperTest.java"] | [Improvement][UT] Improve the ut of DataSourceMapperTest | ### 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 ut of DataSourceMapperTest
### 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/12850 | https://github.com/apache/dolphinscheduler/pull/12851 | 2ba5bd47dde2defb90c18dcac4117d19d55b9076 | 7c711e622f8e5c7efbcbbd349aeb5f117ddab792 | "2022-11-10T04:06:09Z" | java | "2022-11-12T15:57:40Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,838 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/DataSourceServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/DataSourceServiceTest.java"] | [Improvement][UT] Improve the ut of datasource | ### 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 ut of datasource
### 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/12838 | https://github.com/apache/dolphinscheduler/pull/12839 | e3cf72cbcd022adb0527b5c22199a851b11be6bf | 813c44b22b3561f4c32524781ef395892512aef8 | "2022-11-09T08:23:10Z" | java | "2022-11-14T03:30:10Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,834 | ["dolphinscheduler-ui/src/views/projects/workflow/definition/use-table.ts"] | [Feature][ui] suggest put status and schedule publish status together in workflow definition list 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
suggest put status and schedule publish status together in workflow definition list page.
It is difficult to use, because need drag the progress bar to see schedule publish status.
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
| https://github.com/apache/dolphinscheduler/issues/12834 | https://github.com/apache/dolphinscheduler/pull/12922 | d803658abd7e09183d6d7a1c611a00cb327b5f28 | c0b03fca21ec40fd15c52f139b3969065aee2a82 | "2022-11-09T04:32:22Z" | java | "2022-11-18T15:03:02Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,832 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/WorkerGroupServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/WorkerGroupServiceTest.java"] | [Bug] [api] cannot modify worker 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
cannot modify worker group in worker group manage page. alert worker group already exists.
### What you expected to happen
can modify worker group
### How to reproduce
modify worker group in worker group manage page.
### 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/12832 | https://github.com/apache/dolphinscheduler/pull/12874 | 250d81bcf81bc4432f832197e1f96ad440944d5d | e3cf72cbcd022adb0527b5c22199a851b11be6bf | "2022-11-09T04:00:21Z" | java | "2022-11-14T03:20:51Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,828 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/DataSourceController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/DataSourceService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/DataSourceServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/DataSourceServiceTest.java"] | [Bug] [api] User can query unauthorized datasource | ### 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
User can query unauthorized datasource
### What you expected to happen
User can not query unauthorized datasource
### How to reproduce
1. send GET request `.../dolphinscheduler/dasources/<id>`
2. and get the datasource without permission check
<img width="1916" alt="截屏2022-11-09 11 21 47" src="https://user-images.githubusercontent.com/38122586/200731130-acd4d848-13a3-4ced-9899-2994c2ac741c.png">
### 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/12828 | https://github.com/apache/dolphinscheduler/pull/12830 | 78e5569afd557de547a122e81a3993be012a4ae8 | 80da35e39cae8edd5d228d4d189f1eb3d4013aee | "2022-11-09T03:28:02Z" | java | "2023-02-01T02:41:05Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,827 | [".gitignore", ".idea/icon.png"] | [Feature] add icon in Intellijidea and toolbox | ### 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
show icon in Intellijidea and toolbox
like this
<img width="432" alt="image" src="https://user-images.githubusercontent.com/35358675/200730724-f5b7c31b-dec4-40ec-8ec6-4933a603bbe7.png">
<img width="1441" alt="image" src="https://user-images.githubusercontent.com/35358675/200730769-1487405a-c40e-430a-9635-9a5032938ebe.png">
### Use case
_No response_
### Related issues
_No response_
### Are you willing to submit a PR?
- [X] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
| https://github.com/apache/dolphinscheduler/issues/12827 | https://github.com/apache/dolphinscheduler/pull/12829 | bf74b4280fa7c98ea3ec5c5c995bfe0d2f3710d1 | 5b7a609a0ebbf5c0bf664c68ce4cc2354c78f459 | "2022-11-09T03:25:47Z" | java | "2022-11-10T10:56:28Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,812 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ResourcesServiceImpl.java"] | [Bug] [Api] Added param description | ### 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
Added param description in function.
### What you expected to happen
Param description in function lost.
### How to reproduce
ResourceServiceImpl upload.
### 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/12812 | https://github.com/apache/dolphinscheduler/pull/12813 | 23ead4f0e822e0726d586f8a0a4d0820da700fec | 04c6b5e4131c87258e47cdcfb4d5b3f21f9e78e4 | "2022-11-08T05:46:42Z" | java | "2022-11-08T13:17:40Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,804 | ["dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/DataAnalysisControllerTest.java"] | [Improvement][UT] Remove the unused method in DataAnalysisControllerTest | ### 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 the unused method in DataAnalysisControllerTest
### 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/12804 | https://github.com/apache/dolphinscheduler/pull/12805 | 27c00ed3772113e4eb7c53035360d3e3dbf55e66 | d09e02e5a92f0f6a70d053128e280be1143a567b | "2022-11-08T02:20:11Z" | java | "2022-11-21T12:59:30Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,764 | ["docs/docs/en/guide/task/hive-cli.md", "docs/docs/en/guide/task/sql.md", "docs/docs/zh/guide/task/hive-cli.md", "docs/docs/zh/guide/task/sql.md", "docs/img/tasks/demo/hive_cli_from_script.png", "docs/img/tasks/demo/pre_post_sql.png"] | [Doc][hive-sql] hive-sql and hive-cli doc not approperiate | ### 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
problems:
hive in the sql task type, cannot execute multi-statements and use ';'.
hive-cli doc can execute multi-statements, need add execute multi-statements case snapshoot.
### Documentation Links
https://dolphinscheduler.apache.org/zh-cn/docs/latest/user_doc/guide/task/sql.html
https://dolphinscheduler.apache.org/zh-cn/docs/latest/user_doc/guide/task/hive-cli.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/12764 | https://github.com/apache/dolphinscheduler/pull/12765 | 6c5ab3fb5caa624dcab81906efc606af8d9b0bfb | 9bba4b105c671d7caa3db75a230216ee47915e20 | "2022-11-07T07:24:15Z" | java | "2022-11-07T09:39:02Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,763 | ["dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/mapper/ProjectMapperTest.java"] | [Improvement][UT] Improve testListAuthorizedProjects() in ProjectMapperTest | ### 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 testListAuthorizedProjects() in ProjectMapperTest
### 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/12763 | https://github.com/apache/dolphinscheduler/pull/12768 | 597ae5ff7ce68251d6194ed757e680e2575cdc71 | 43719f7c15008f2e72268ce5058069e7c43b67ed | "2022-11-07T07:19:56Z" | java | "2022-11-27T05:15:38Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,758 | ["dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-config.ts"] | [Improvement][UI] Need to adjust the args of router to allow the edge to be connected with node at its different positions. | ### 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
Need to adjust the args of router to allow the edge to be connected with node at its different positions.
### 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/12758 | https://github.com/apache/dolphinscheduler/pull/12759 | c4fb55588378e43d9cbd7faea271df0a16d004c4 | 4c714cf9c962504e604ffa75d675826b7318c051 | "2022-11-07T05:46:40Z" | java | "2022-11-07T06:26:12Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,741 | ["dolphinscheduler-aop/pom.xml", "pom.xml"] | [Bug] [dolphinscheduler-aop] aspectj-maven-plugin version undefined | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
I found that during CI/CD, there's a warning because of plugin version undefined, which possibly cause error in the future.
<img width="1022" alt="image" src="https://user-images.githubusercontent.com/45198818/200212472-77cb0661-e71b-4e8c-8130-ddef1788225b.png">
### What you expected to happen
Add plugin version and remove warning.
### How to reproduce
It can be seen in every CICD log😢.
### 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/12741 | https://github.com/apache/dolphinscheduler/pull/12756 | 0e099037bf88b1f3a1011f340914b80eb7cde496 | 6c5ab3fb5caa624dcab81906efc606af8d9b0bfb | "2022-11-07T02:47:12Z" | java | "2022-11-07T07:07:07Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,725 | ["dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-config.ts", "dolphinscheduler-ui/src/views/projects/workflow/components/dag/use-canvas-init.ts"] | [Improvement][UI] Make nodes and edges in the DAG more obvious and beautiful. | ### 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 the nodes and edges in the DAG are a little bit less obvious. And the font size of the label in the nodes is too small to see it. The edges between two nodes overlap too much. So users can't be able to find their relations easily.
<img width="1724" alt="image" src="https://user-images.githubusercontent.com/4928204/200106349-3d6ddfe3-7c0b-45b2-83a9-8feb2ea6a307.png">
### 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/12725 | https://github.com/apache/dolphinscheduler/pull/12728 | 169cbe32678ecbb9e8aabfb78dd6b103a48c709a | 27eada79e44856dc89bd1b2a5ad0fa5301af2829 | "2022-11-05T06:43:25Z" | java | "2022-11-06T12:04:27Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,716 | ["dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProcessTaskRelationMapper.xml"] | [Bug] [dolphinscheduler-dao] sql grammar 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
sql error

### What you expected to happen
sql syntax is normal
### How to reproduce
no
### 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/12716 | https://github.com/apache/dolphinscheduler/pull/12717 | 04e23ed88f95ea27e2f43e8c17e8081eb33d844f | 913525343e98541b46cbc048058c4b2a67400804 | "2022-11-04T16:21:51Z" | java | "2022-11-05T13:44:01Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,706 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-flink/src/main/java/org/apache/dolphinscheduler/plugin/task/flink/FlinkTask.java"] | [Bug] [Flink] Flink SQL cannot run due to missing main jar 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
![Uploading image.png…]()
### What you expected to happen
Flink sql task can work well.
### How to reproduce
submit a flink sql task
### 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/12706 | https://github.com/apache/dolphinscheduler/pull/12705 | 7d0e2cbbb9fcd2e1543f5166f0518eda03afae89 | 2c3cc31a4ce43b3b03b42530d41e21785796ab30 | "2022-11-04T08:40:30Z" | java | "2022-11-04T15:02:00Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,700 | ["dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.xml"] | [Improvement][Project] Improve the sql of listAuthorizedProjects | ### 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 sql of listAuthorizedProjects
### 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/12700 | https://github.com/apache/dolphinscheduler/pull/12702 | c3c2dda861e2472b8f282ee889e5d609d0d6b36c | 29a98881679f9a3f307350f6c579583b66dc9ea0 | "2022-11-04T06:34:32Z" | java | "2023-07-11T12:12:16Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,697 | ["dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ProjectServiceTest.java"] | [Improvement][UT] Improve the ProjectServiceTest | ### 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 ProjectServiceTest
### 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/12697 | https://github.com/apache/dolphinscheduler/pull/12698 | eb4cba8884c8e70d61d6d1aba12f718fae57a3a5 | 7c97febefbe3fc682056591e11b9cb35609cebb2 | "2022-11-04T06:07:54Z" | java | "2023-03-01T03:37:52Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,696 | ["docs/docs/en/contribute/log-specification.md", "docs/docs/zh/contribute/log-specification.md", "dolphinscheduler-api/src/main/resources/logback-spring.xml", "dolphinscheduler-standalone-server/src/main/resources/logback-spring.xml"] | [Doc][Contribute] Add examples about how to configure log level for a specific package in DS | ### 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
* DS uses `logback` for default log configurations. For those developers who are not familiar with spring boot logging, it will save them trouble when debugging if we could provide an example in doc about how to configure log level for a specific package in DS, such as `org.springframework.web`.
### 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/12696 | https://github.com/apache/dolphinscheduler/pull/12699 | 00b18ed4228d39718777efde867d2bc6aabc9fff | 6d79414491f38611bebf32d632eb88b4be213e2a | "2022-11-04T03:42:40Z" | java | "2022-11-07T02:30:56Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,694 | ["dolphinscheduler-ui/src/views/projects/task/definition/use-task.ts"] | [Bug] [dolphinscheduler-api] This task has pre node, but they are not showing | ### 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
This task has pre node, but they are not showing

### What you expected to happen
show pre node
### How to reproduce
1.create task and pre node
2.in the task define list, click edit
### 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/12694 | https://github.com/apache/dolphinscheduler/pull/12819 | e20e0660764dd57d22ea9e6499d0412a7d2bd256 | edbf5cd3afbc64763f640203439a4f1d1423a450 | "2022-11-04T02:47:32Z" | java | "2024-01-29T05:40:21Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,687 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TaskDefinitionServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/vo/TaskDefinitionVo.java"] | [Bug] [dolphinscheduler-api] in the task define,click edit,timeoutStategy status consistent | ### 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
this is null, but not null

### What you expected to happen
same
### How to reproduce
1. create task
2. in the task define, click edit
### 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/12687 | https://github.com/apache/dolphinscheduler/pull/12689 | 04c6b5e4131c87258e47cdcfb4d5b3f21f9e78e4 | 641a2559eafd02d95ced7a88c781c9d38379531a | "2022-11-03T09:57:36Z" | java | "2022-11-09T03:48:12Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,684 | ["deploy/kubernetes/dolphinscheduler/templates/svc-dolphinscheduler-api.yaml", "deploy/kubernetes/dolphinscheduler/values.yaml"] | [Bug] [K8s] Deploy failed when change api service type to NodePort | ### 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
Deployed ds on k8s cluster using office document, change api service type to `NodePort`, and set NodePort and failed.
### What you expected to happen
```
service:
## type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer
type: "NodePort"
## clusterIP is the IP address of the service and is usually assigned randomly by the master
clusterIP: ""
## nodePort is the port on each node on which this service is exposed when type=NodePort
nodePort: "31057"
```
```
Error: INSTALLATION FAILED: Service "dolphinscheduler-api" is invalid: spec.ports[1].nodePort: Duplicate value: 31057
```
### How to reproduce
Due https://github.com/apache/dolphinscheduler/pull/10653, `api-port` and `python-api-port` using the same nodeport, will not pass by k8s.
I'll open a PR to fix this bug.
### 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/12684 | https://github.com/apache/dolphinscheduler/pull/12685 | a47b4d0672abfdb6c6b867c8743b6af146671453 | 6766ec04df8bed87425174609e21752844a9ca34 | "2022-11-03T08:38:36Z" | java | "2022-11-03T09:47:06Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,671 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ProcessDefinitionServiceTest.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/TaskDefinitionMapper.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskDefinitionMapper.xml"] | [Bug] [dolphinscheduler-api] when delete workflow, should determine whether there are related 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
start

After deleting the workflow

### What you expected to happen
When deleting a workflow, should determine whether there are related tasks
### How to reproduce
1. create workflow and task
2. delete workflow
3. look task list
### 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/12671 | https://github.com/apache/dolphinscheduler/pull/12681 | e702beced5edb567c5f14bec19be3b1697890145 | 7d0e2cbbb9fcd2e1543f5166f0518eda03afae89 | "2022-11-02T16:22:39Z" | java | "2022-11-04T06:40:15Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,667 | ["dolphinscheduler-ui/src/views/projects/list/index.tsx", "dolphinscheduler-ui/src/views/projects/task/definition/batch-task.tsx", "dolphinscheduler-ui/src/views/projects/task/instance/batch-task.tsx", "dolphinscheduler-ui/src/views/projects/task/instance/stream-task.tsx", "dolphinscheduler-ui/src/views/projects/workflow/definition/index.tsx", "dolphinscheduler-ui/src/views/projects/workflow/instance/components/process-instance-condition.tsx"] | [Improvement][UI] The search condition inputs in many pages lack the clearable button. | ### 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 search condition inputs in many pages lack the clearable button. It's not convenient. I expect that the DolphinScheduler can support to use the clearable button to clear the value of the input and search the result one more 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/12667 | https://github.com/apache/dolphinscheduler/pull/12668 | ff59acd02fe6f601a929963d3c5bfefa61e21387 | f889d855fb2229ceab8a4deb3e768ffbdb4d9a55 | "2022-11-02T11:46:35Z" | java | "2022-11-02T13:40:39Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,658 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/UsersServiceImpl.java"] | [Improvement][Permission] Improve the readability of setPerm() in grantProjectbyCode() | ### 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 readability of setPerm() in grantProjectbyCode()
### 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/12658 | https://github.com/apache/dolphinscheduler/pull/12660 | 7cdb926a5feb6892635e3467f2e9497d99c6776f | c69376e74c1ca85f341eab2b5d707d1997e50806 | "2022-11-02T03:53:56Z" | java | "2022-11-03T01:29:04Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,650 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/permission/ResourcePermissionCheckServiceImpl.java"] | [Improvement][Permission] Improve the check of resourcePermissionCheck() | ### 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 check of resourcePermissionCheck()
### 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/12650 | https://github.com/apache/dolphinscheduler/pull/12652 | 1d0f9a7d04f55f5952969cffa7cc74b879ebc6c7 | 44e0935f569d6a9dbf65ef1edaf91bd9e892c558 | "2022-11-02T01:58:03Z" | java | "2022-11-03T01:12:56Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,621 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TaskDefinitionServiceImpl.java"] | [Improvement] [ApiServer] Task defination list paging sorted by updateTime not 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
List task defination and sorted by update time not effect
### What you expected to happen
List task defination and sorted by update time
### How to reproduce
List task defination and look
### 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/12621 | https://github.com/apache/dolphinscheduler/pull/12622 | 838a0df7839ae0e2c186b9bf52a0bcbcae8e7d80 | 0db1bb6ba8fcd503e215bbbf4a4529d94b2467fb | "2022-10-31T08:44:47Z" | java | "2022-12-13T08:35:54Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,604 | ["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/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/service/modules/process-instances/index.ts", "dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-toolbar.tsx", "dolphinscheduler-ui/src/views/projects/workflow/instance/components/variables-view.tsx"] | [Improvement][UI] When viewing a workflow definition support to view its all variables. | ### 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 The page of a workflow instance support view its all variables on the toolbar of its DAG. But the page of a workflow definition doesn't support view its variables. This is really inconvenient. So It's indubitable to add the feature.
The page of the workflow definition should be like this:
<img width="1068" alt="image" src="https://user-images.githubusercontent.com/4928204/198817697-876a6b7a-cc1a-4025-b214-8973616e459b.png">
### 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/12604 | https://github.com/apache/dolphinscheduler/pull/12609 | 064fec88b077513fccfea08105ede968f59096bc | d84f1ef2694d237e4d36604be77c6758a17c5cb4 | "2022-10-29T06:38:52Z" | java | "2022-10-30T12:31:40Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,559 | ["docs/docs/en/guide/project/workflow-definition.md", "docs/docs/zh/guide/project/workflow-definition.md"] | [Doc][BUG] Documentation bug lead to CI 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="1561" alt="image" src="https://user-images.githubusercontent.com/31528124/198186086-0aedcfd6-78d2-41da-aa57-4f272398846e.png">
### 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/12559 | https://github.com/apache/dolphinscheduler/pull/12560 | 9c2a2900121c6a372b306a76874ae364da8b8c08 | 21caec01db0c8f9ae8fe3ec62a2bf3b73f489cb9 | "2022-10-27T03:42:55Z" | java | "2022-10-27T04:41:30Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,555 | ["docs/configs/docsdev.js", "docs/docs/en/guide/alert/slack.md", "docs/docs/zh/guide/alert/feishu.md", "docs/docs/zh/guide/alert/slack.md", "docs/img/new_ui/dev/alert/alert_slack.png", "docs/img/new_ui/dev/alert/alert_slack_enable.png", "docs/img/new_ui/dev/alert/alert_slack_new.png", "docs/img/new_ui/dev/alert/alert_slack_webhook_addr.png"] | [Doc][ALERT] Missing Slack alert 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
Missing Slack alert doc
### Documentation Links
https://dolphinscheduler.apache.org/zh-cn/docs/latest/user_doc/guide/alert/enterprise-webexteams.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/12555 | https://github.com/apache/dolphinscheduler/pull/12567 | 883c754951a5b64620e2a4230a46654b31d76c33 | 4e2701b57ef55c93f1f14f348e96a2f7c5fd2177 | "2022-10-27T02:15:15Z" | java | "2022-11-01T01:49:05Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,504 | ["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.0.2_schema/mysql/dolphinscheduler_ddl.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.0.2_schema/mysql/dolphinscheduler_dml.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.0.2_schema/postgresql/dolphinscheduler_ddl.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.0.2_schema/postgresql/dolphinscheduler_dml.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.2.0_schema/mysql/dolphinscheduler_ddl.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.2.0_schema/postgresql/dolphinscheduler_ddl.sql"] | [Bug] [api] The same code and version in table t_ds_process_definition_log causes an error in the list interface | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
After I edit the workflow, I save it.
The interface response speed is too slow.
Let me think I didn't save it,So I saved it again.
The result saved successfully both times.
But in the t_ds_process_definition_log table, the version values are the same.
Causes the list interface to report an error.

### What you expected to happen
One of the requests reported an error
### How to reproduce
in What happened
### Anything else
_No response_
### 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/12504 | https://github.com/apache/dolphinscheduler/pull/12503 | 233bbdb09ebb6756a8b8578d4da7ec51820b2873 | 97a0771f21322cb6f711abc2217604f4a5d8e32d | "2022-10-23T04:13:10Z" | java | "2022-10-25T06:20:37Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,490 | ["docs/docs/en/guide/project/workflow-definition.md", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/WorkerGroupServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/WorkerGroupServiceTest.java"] | [Bug] [API] Before deleting a worker group, check whether there is environment that reference the worker 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
Before deleting a worker group, check whether there is environment that reference the worker group.
### What you expected to happen
When a worker group is referenced by the environment, the worker group cannot be deleted。
### How to reproduce
1.create worker group
2.create environment ,choose worker group
3.delete worker group
### 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/12490 | https://github.com/apache/dolphinscheduler/pull/12534 | 53340fc07b1e7b6d5f76aeb015fc36eb661e4a32 | 4a13148bfc20ab29c4782d08514326725b435ab9 | "2022-10-22T01:32:58Z" | java | "2022-10-27T08:34:08Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,470 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/WorkerGroupService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ExecutorServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/WorkerGroupServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ExecutorServiceTest.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/WorkerGroupServiceTest.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessService.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java"] | [Refactor] Migrate all workergroup-related interface functions from ProcessServiceImpl | ### 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 a part of #12403
### 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/12470 | https://github.com/apache/dolphinscheduler/pull/12493 | 547aa437ab424250dac6b4df3de7a4b1b8af7d98 | ed209bdf82d855a804b68d8833f20595e86bb069 | "2022-10-20T13:08:02Z" | java | "2022-10-26T11:18:32Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,466 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ResourcesServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/ResourcesServiceTest.java"] | [Bug] [Resource] Resource authorization 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
Resource authorization is disabled
### What you expected to happen
Normal
### How to reproduce
Resource authorization
### 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/12466 | https://github.com/apache/dolphinscheduler/pull/12467 | f249f2b257847787605758797669abecf1b782d8 | 606a5aeee5b44b095ddf922e2c8c0de485e56c45 | "2022-10-20T10:47:44Z" | java | "2022-11-06T13:15:27Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,457 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-environment-name.ts"] | [Bug] [Task Definition] cannot change Environment Name when create or edit 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
It's not work when I create or change the task `Environment Name`, and `Environment Name` always use the first Environment of the Worker Group.
### What you expected to happen
`Environment Name` should be changed so that I can use different `Environment Name` from the same `Worker group`.
### How to reproduce
It's simple to reproduce this issue
1. into the `Security -> Environment Manage`, create multiple `Environment Name` that all belongs to one worker group.
2. into the `Project -> Task -> Task Definition`, change the `Environment Name` by create or edit task;
3. save and review the task,and will find it's not work;
### Anything else
### How often does this problem occur?
> every time
### The following instructions may be useful
Our dolphincheduler instance use MySQL database, and found the sql update with wrong contition:
```
# 1
select
id, code...
from t_ds_task_definition
WHERE code = ...
and version = ..
# 2
insert into t_ds_task_definition_log ...
# 3
UPDATE t_ds_task_definition SET code=...
...
WHERE id=?
```
we cann't find the `id value` from the table `t_ds_task_definition`, but found in table `t_ds_task_definition_log`.
### 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/12457 | https://github.com/apache/dolphinscheduler/pull/13148 | b9ef4a717772b448ac97e21a307ad3ea94471a77 | 615b1dbb37b4af1ac933d4b7c608fc6c1ecfcd05 | "2022-10-20T03:10:40Z" | java | "2023-02-02T06:53:21Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,451 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/k8s/K8sManager.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ClusterServiceImpl.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessServiceImpl.java", "dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/utils/ClusterConfUtils.java"] | [Bug] [k8s] Read the incorrect kubeconfig | ### 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
Read the incorrect kubeconfig from `cluster.getConfig()`
And if the kubeconfig content is wrong, `DefaultKubernetesClient(config)` will automatically reade the kubeconfig from `~/.kube/config` instead.
### What you expected to happen
Read the correct kubeconfig
### How to reproduce
see the code
### 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/12451 | https://github.com/apache/dolphinscheduler/pull/12452 | fdac75137969d3e656e1aa898f7431f9657de50b | 233bbdb09ebb6756a8b8578d4da7ec51820b2873 | "2022-10-19T15:28:50Z" | java | "2022-10-25T03:25:30Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,446 | ["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"] | [Improvment] [Style] API Test spotless check failed. | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
found


### What you expected to happen
CI pass
### How to reproduce
N/A
### Anything else
_No response_
### Version
dev
### Are you willing to submit PR?
- [X] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
| https://github.com/apache/dolphinscheduler/issues/12446 | https://github.com/apache/dolphinscheduler/pull/12447 | a17923a62b036537d2b21c5100e1038468c56e1d | 0eef2e3e10ca8d20d8a0ad59b0f0674f90ee321c | "2022-10-19T12:46:12Z" | java | "2022-10-20T02:31:16Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,429 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessInstanceServiceImpl.java"] | [Bug] [API] The workflow definition and the tenant in the workflow instance are inconsistent | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
<img width="680" alt="1666837161777" src="https://user-images.githubusercontent.com/33045461/198175765-4089aa91-437b-4314-8e27-7dad5fc59a3d.png">
<img width="711" alt="1666837141669" src="https://user-images.githubusercontent.com/33045461/198175773-7fee4a5a-1343-4aaf-930e-1f8859c8f268.png">
### What you expected to happen
The workflow definition is consistent with the tenant in the workflow instance.
### How to reproduce
1.create workflow definition
2.run workflow definition
3.click edit workflow
4.click edit wotkflow 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/12429 | https://github.com/apache/dolphinscheduler/pull/12533 | 2c1583d1941f9b2cdfcfced80db359cb738d8981 | 547aa437ab424250dac6b4df3de7a4b1b8af7d98 | "2022-10-19T02:03:06Z" | java | "2022-10-26T08:11:24Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,425 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TenantServiceImpl.java"] | [Bug] [API] If Storge exception, ds can create tenant, but show cannot. | ### 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 create a new tenant, but storge has some exception such as connect refuse. The UI alert will show create tenant failed, but it will be created in DB and can show in UI. And then use cannot delete this wrong tenant, because cannot delete it in storge.
But due to my PC env, i cannot show the screenshot. But we can check the source code.
**_Create:_**

**_Delete:_**

### What you expected to happen
If db or storge has exception, ds cannot create a tenant.
### How to reproduce
1. Config the `resource.storage.type=HDFS`
2. Create a new tenant
3. Delete this new tenant.
### Anything else
_No response_
### Version
dev
### Are you willing to submit PR?
- [X] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
| https://github.com/apache/dolphinscheduler/issues/12425 | https://github.com/apache/dolphinscheduler/pull/12445 | b5193ee4e50e5d0b7464eab3ee331a858151540c | 1384d8f4fa90c9edfbbbd57ae914b7b6840d2b43 | "2022-10-18T14:09:29Z" | java | "2022-10-22T03:33:17Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,410 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/permission/ResourcePermissionCheckServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/K8SNamespaceServiceImpl.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/K8sNamespaceMapper.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/K8sNamespaceMapper.xml"] | [Bug] [API] In the workflow definition, the result of the worker list is only default | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
In the workflow definition, the result of the worker list is only default
### What you expected to happen
In the workflow definition, the result of the worker list is only default
### How to reproduce
In the workflow definition, the list of workers appears fine
### 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/12410 | https://github.com/apache/dolphinscheduler/pull/12411 | 651588c98dbaae2261a2e34044afdbae99d23b60 | 1436ad65fc1e6be5f049a534251a0a4516100109 | "2022-10-18T04:17:51Z" | java | "2022-10-21T05:54:28Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,408 | ["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"] | [Bug] [Failed to schedule schedule with parameters] Schedule schedule | ### 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
带有$[yyyyMMdd]的定时参数失败
### What you expected to happen
能执行带参shell
### How to reproduce





### 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/12408 | https://github.com/apache/dolphinscheduler/pull/12419 | 38b643f69b65f4de9dd43809404470934bfadc7b | a8e23008acdebd99811271611a15e83a9a7d8d92 | "2022-10-18T02:17:53Z" | java | "2022-10-19T01:43:36Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,396 | ["dolphinscheduler-dao/src/main/resources/sql/upgrade/3.1.1_schema/mysql/dolphinscheduler_ddl.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.1.1_schema/mysql/dolphinscheduler_dml.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.1.1_schema/postgresql/dolphinscheduler_ddl.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.1.1_schema/postgresql/dolphinscheduler_dml.sql", "dolphinscheduler-dao/src/main/resources/sql/upgrade/3.2.0_schema/postgresql/dolphinscheduler_dml.sql"] | [Bug] [Schedule] Upgraded from version 3.0.x to version 3.1.0, the workflow definition that has been scheduled online is not executed | ### 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
Upgraded from version 3.0.x to version 3.1.0, the workflow definition that has been scheduled online is not executed
### What you expected to happen
Upgraded from version 3.0.x to version 3.1.0
### How to reproduce
Upgraded from version 3.0.x to version 3.1.0, the workflow definition that has been scheduled online is executed
### 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/12396 | https://github.com/apache/dolphinscheduler/pull/12397 | 4ea7eec7504256ba764a8f60fb496e41eaa4dde6 | c02e08bb3d91d7c7980eb9e90d22c27dd186e8f7 | "2022-10-17T04:24:42Z" | java | "2022-10-17T11:45:39Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,395 | ["pom.xml"] | [Migrate][Test] Block explicit import of jUnit 4 library | ### 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 we have migrated all unit tests from jUnit 4 -> jUnit5 and removed related jUnit 4 library imports, we need to add a `Spotless` step to check and block such imports like `org.junit.xxx` in the future. Contributors are supposed to import `org.junit.jupiter.xxx` instead.
* This issue is part of #12301.
### 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/12395 | https://github.com/apache/dolphinscheduler/pull/12398 | c02e08bb3d91d7c7980eb9e90d22c27dd186e8f7 | c7e6e827bd2c53f67c7c86053e7fb46f161f0f26 | "2022-10-17T04:09:30Z" | java | "2022-10-17T14:02:01Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,391 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/TaskConstants.java"] | [Improvement][API] Workflow definitions that contain logical task nodes support the copy function | ### 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, the system does not support the replication function of workflow definition including `CONDITIONS`, `SWITCH`, `SUB_PROCESS`, `DEPENDENT` four task nodes.
<img width="1472" alt="image" src="https://user-images.githubusercontent.com/37063904/196038586-7e802eeb-2063-468f-83ae-430201149712.png">
### 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/12391 | https://github.com/apache/dolphinscheduler/pull/12392 | b7bd8d780356e055998fd0047be7e2cfea85d59b | 55004bebe032b7212892686d308adca2ac0e2723 | "2022-10-16T13:42:00Z" | java | "2022-10-17T02:28:58Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,385 | ["docs/docs/zh/guide/task/spark.md"] | [Doc][Introduction to Functions For Task] Wrong optional parameters of Spark | ### 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 --jars
### Documentation Links
https://dolphinscheduler.apache.org/zh-cn/docs/latest/user_doc/guide/task/spark.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/12385 | https://github.com/apache/dolphinscheduler/pull/12386 | bc80f3405672a19bcfcf05e1b6a335315cffdb43 | a7256144292d1803fd89107172932599c924db15 | "2022-10-15T08:54:32Z" | java | "2022-10-16T04:40:17Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,383 | ["dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/expand/CuringGlobalParams.java"] | [Bug] [Service] Condition 'globalParamsMap != null' is always 'true' | ### 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
Condition 'globalParamsMap != null' is always 'true'
### What you expected to happen
Condition judge correctly
### How to reproduce

### 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/12383 | https://github.com/apache/dolphinscheduler/pull/12384 | 1d0d26a416027b9e91d1a21092bb5b4406a757b2 | 934d6d21eb8a8e903b3632d0e2b873ea87d150ff | "2022-10-15T01:52:52Z" | java | "2022-10-17T06:52:45Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,377 | ["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/permission/ResourcePermissionCheckServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/K8SNamespaceServiceImpl.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/K8sNamespaceMapper.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/K8sNamespaceMapper.xml"] | [Bug] [api-service] Tenant user run Workflow WorkerGroups can't find admin add other Worker Group list | ### 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
version :3.1.0
admin add new Workflow

tenant user hadoop run Workflow

### What you expected to happen
i can Read the The source code find use this api
`dolphinscheduler/worker-groups/all`
WorkerGroupServiceImpl.queryAllGroup

ResourceAcquisitionAndPermissionCheck.userOwnedResourceIdsAcquisition

if use tenant user only return ` Collections.emptySet();` why ??? i can find subsequent worker-groups add ZOOKEEPER `/dolphinscheduler/nodes/worker/`

### How to reproduce
I used to use version 2.0 Tenant user can find admin add new WorkerGroups
How can I discover newly added WorkerGroups
### 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/12377 | https://github.com/apache/dolphinscheduler/pull/12411 | 651588c98dbaae2261a2e34044afdbae99d23b60 | 1436ad65fc1e6be5f049a534251a0a4516100109 | "2022-10-14T05:20:24Z" | java | "2022-10-21T05:54:28Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,372 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/utils/K8sUtils.java"] | [Improvement][k8s] Update the deprecated k8s api | ### 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
Update the deprecated k8s api
### 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/12372 | https://github.com/apache/dolphinscheduler/pull/12373 | 2f37da0dbcbbd887a801c6e922551ce561a606cd | 7b44612f283702f2a25a4d36ffdda015a812a321 | "2022-10-14T03:16:03Z" | java | "2022-10-14T08:18:35Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,364 | ["dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-sidebar.tsx"] | [Bug] [UI] When creating a workflow, click Data Quality or Machine Learning to expand both | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
### What happened
When creating a workflow, click Data Quality or Machine Learning in the sidebar to expand both
<img width="1158" alt="dqandml" src="https://user-images.githubusercontent.com/100667564/195637121-bc6d2b3d-4aad-4931-8d14-4ef5dce2a6c4.png">
### What you expected to happen
When creating a workflow, click Data Quality or Machine Learning in the sidebar to expand the corresponding menu
### How to reproduce
as mentioned 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/12364 | https://github.com/apache/dolphinscheduler/pull/12365 | f0a34cddec5fe9fd0d1de5cd7f6788dda87c5fca | 70aef3ec21aa712f1f499f7b9b56bdb6b803d654 | "2022-10-13T15:19:20Z" | java | "2022-10-20T08:46:10Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,355 | ["dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxUtils.java", "dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-datax.ts"] | [Feature][TASK-DATAX] add ```presto``` 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
_No response_
### Use case
i'll add ```presto``` option ,so people can choose ```presto```.
### 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/12355 | https://github.com/apache/dolphinscheduler/pull/12371 | 7aa8a77fb23252360dcc29721ddc56ed8aae8de8 | b7bd8d780356e055998fd0047be7e2cfea85d59b | "2022-10-13T07:44:53Z" | java | "2022-10-16T09:19:29Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,335 | ["dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-hive-cli.ts"] | [Improvement][ui] Make the resources to be reactive in hivecli task | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement.
### Description
Make the resources to be reactive.
* related: #12225 and #11882
### 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/12335 | https://github.com/apache/dolphinscheduler/pull/12336 | 9bba4b105c671d7caa3db75a230216ee47915e20 | 58721ba855be07f77d0499d1aa0dcaff68bedc97 | "2022-10-12T08:05:01Z" | java | "2022-11-07T10:05:51Z" |
closed | apache/dolphinscheduler | https://github.com/apache/dolphinscheduler | 12,333 | ["dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/common/CodeEditor.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-core/src/main/java/org/apache/dolphinscheduler/e2e/core/DolphinSchedulerExtension.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-core/src/main/java/org/apache/dolphinscheduler/e2e/core/TestDescription.java", "dolphinscheduler-microbench/pom.xml", "dolphinscheduler-microbench/src/main/java/org/apache/dolphinscheduler/microbench/base/AbstractBaseBenchmark.java"] | [Migration][Test] Migrate all UT cases from jUnit 4 to jUnit 5 in microbench and e2e module | ### 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
* Migrate all UT cases from jUnit 4 to jUnit 5 in microbench and e2e module.
* This issue is a sub-task of #12301
### 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/12333 | https://github.com/apache/dolphinscheduler/pull/12348 | a11892aea0dd16ea04d7a595b186a8ae1f32a9c0 | a17923a62b036537d2b21c5100e1038468c56e1d | "2022-10-12T07:24:18Z" | java | "2022-10-19T08:58:42Z" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.