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
9,071
["dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-child-node.ts"]
[Bug-FE][UI Next][V1.0.0-Alpha] The node name did not display the default name when I created the sub process node in dag page.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened The node name did not display the default name when I created the sub process node in dag page. ### What you expected to happen The node name displays the default name. ### How to reproduce 1. Open the dag page. 2. Create a new sub process node. ### 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/9071
https://github.com/apache/dolphinscheduler/pull/9075
197accc60107370600719a7ade7e86bd80f69d26
936ea993031fdc2fbfacfba4bdd8588099fd380f
"2022-03-22T03:19:59Z"
java
"2022-03-22T07:06:55Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,070
["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/consumer/TaskPriorityQueueConsumer.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/parameters/resource/AbstractResourceParameters.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/parameters/resource/ResourceParametersHelper.java", "dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/test/java/org/apache/dolphinscheduler/plugin/task/api/parameters/resource/AbstractResourceParametersTest.java"]
[Bug] [Server] SQL task dispatch fail and keep submit state
### Search before 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 task dispatch fail and no error log. ### What you expected to happen SQL task can run success. ### How to reproduce 1. create a datasource, like MySQL; 2. create a workflow with a SQL task, like `select now();`, use the MySQL datasource; 3. run workflow; ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9070
https://github.com/apache/dolphinscheduler/pull/9072
f5ef410d06e0ef7717dd0065320edbd631aef8c3
852597c9bf3340b679be8e11b5fe33b3e34e03e7
"2022-03-22T03:12:05Z"
java
"2022-03-22T06:02:07Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,069
["dolphinscheduler-ui-next/src/views/projects/workflow/relation/components/Graph.tsx"]
[Bug-FE][UI Next][V1.0.0-Alpha] Workflow Relation field display 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 url:http://8.142.81.15:12345/dolphinscheduler/ui/projects/4915141548736/workflow/relation <img width="1916" alt="image" src="https://user-images.githubusercontent.com/76080484/159399088-1a91fbed-b334-4c6f-80d6-81485c280503.png"> ### What you expected to happen When the back-end return field is empty, it should also be displayed as empty or "-" ### How to reproduce click Workflow Relation ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9069
https://github.com/apache/dolphinscheduler/pull/9091
23b24508abb14a96687dba856efb5915a33a331c
d641c8d4eaf509dbfcf066554f247ce7efdafba3
"2022-03-22T03:01:04Z"
java
"2022-03-22T10:49:15Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,065
["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java"]
[Bug] [Master] When there is only one task and the submit failed, the state of Process Instance is Incorrect
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened BG : The Process Instance have only one task In the method of `submitPostNode`, the task successfully added to `readyToSubmitTaskQueue`, then submit task from queue, if submit failed, such as DB error, the `taskFailedSubmit` is true and `readyToSubmitTaskQueue` size is not empty. when execute the method of `updateProcessInstanceState`, case one: FailureStrategy is END, it return state of `FAILURE`, and update state; case two: FailureStrategy is CONTINUE, it return state of `RUNNING_EXECUTION`, and remain the same state forever; More seriously, both cases will cause `processInstanceExecCacheManager` not remove `WorkflowExecuteThread` ![image](https://user-images.githubusercontent.com/29919212/159254253-7d306b96-3a26-4b40-9fd7-1875a4404dec.png) ![image](https://user-images.githubusercontent.com/29919212/159262647-67b8351f-8073-4de3-8e60-dfe9e4c53d2a.png) ### What you expected to happen the process instance can update the state normally and can terminate normally. I hope it will be resolved in v2.0.6 ### How to reproduce Refer to `What happened` ### 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/9065
https://github.com/apache/dolphinscheduler/pull/9186
6b2a4e31eadf707272381ced26a81eaa557e60c0
3e5781b6e1c38675ba134048b21941be63723cb6
"2022-03-21T12:46:10Z"
java
"2022-04-01T14:23:35Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,055
["dolphinscheduler-ui-next/src/utils/tree-format.ts", "dolphinscheduler-ui-next/src/views/security/user-manage/components/use-authorize.ts"]
[Bug-FE][UI Next][V1.0.0-Alpha] Resource authorization 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 Resource auth failed. I authorized two files for the user, but he can only see one. - Resource authorization page <img width="1306" alt="image" src="https://user-images.githubusercontent.com/8847400/159221348-18ba0455-f4d6-46bf-9aeb-6ef720640491.png"> - User resources page <img width="1913" alt="image" src="https://user-images.githubusercontent.com/8847400/159221463-57721a4c-89af-4043-81b6-96b31a727c29.png"> ### What you expected to happen User can see it. ### How to reproduce above ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9055
https://github.com/apache/dolphinscheduler/pull/9092
d641c8d4eaf509dbfcf066554f247ce7efdafba3
0b2923d57765d64e387a092a96bd8c97716c3b27
"2022-03-21T07:50:25Z"
java
"2022-03-22T10:56:41Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,052
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts"]
[Bug-FE][UI Next][V1.0.0-Alpha]The data_quality.rule.all was not configured in the language packs.
### Search before 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 data_quality.rule.all was not configured in the language packs. ### What you expected to happen Config it in the language packs. ### How to reproduce 1. Open the data quality rule management 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/9052
https://github.com/apache/dolphinscheduler/pull/9054
8bb6971c2f6a4c4e42ee1d06bd07ba7d75e6bc3d
af2321f2287719f256071ff8a69840663d87e24c
"2022-03-21T07:32:06Z"
java
"2022-03-21T09:06:33Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,050
["dolphinscheduler-ui-next/src/views/security/user-manage/components/use-user-detail.ts"]
[Bug-FE][UI Next][V1.0.0-Alpha] User Manage Queue display 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 Queue display error when I create user <img width="1919" alt="image" src="https://user-images.githubusercontent.com/8847400/159216962-b5d9a348-9dcf-47f6-849a-3c4f9b101293.png"> ### What you expected to happen Display yarn1 in Queue ### How to reproduce above ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9050
https://github.com/apache/dolphinscheduler/pull/9060
cfe2473e578d25909ce74e968fb1a93aa6d225e6
bae9f16b6c803bd382310be46b7244356b4a7d48
"2022-03-21T07:00:43Z"
java
"2022-03-21T10:56:49Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,048
["dolphinscheduler-ui-next/src/views/security/tenant-manage/components/tenant-modal.tsx", "dolphinscheduler-ui-next/src/views/security/tenant-manage/components/use-modalData.ts"]
[Bug-FE][UI Next][V1.0.0-Alpha] The queue name always shows the first one in tenant edit
### Search before 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="1631" alt="image" src="https://user-images.githubusercontent.com/8847400/159213841-c0e09ad7-d7fa-44bc-a6de-dc03ef514eaa.png"> ### What you expected to happen The queue name display queue1 ### How to reproduce above ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9048
https://github.com/apache/dolphinscheduler/pull/9064
bf1f959f587ff7dfb268a21b2c99b72388ad778a
f5ef410d06e0ef7717dd0065320edbd631aef8c3
"2022-03-21T06:25:39Z"
java
"2022-03-22T03:27:22Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,045
["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/enums/Status.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/LoggerServiceImpl.java", "dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/service/LoggerServiceTest.java"]
[Bug-RD][UI Next][V1.0.0-Alpha] A new fault-tolerant test bug
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Run the workflow to close worker and master, restart the workflow did not continue to execute url:http://8.142.81.15:12345/dolphinscheduler/ui/projects/4915141548736/workflow/instances/9801?code=4915682115648 <img width="1919" alt="image" src="https://user-images.githubusercontent.com/76080484/159208421-134de269-94dc-4572-b5d8-4eea7a8c84d3.png"> ### What you expected to happen Restarting master and worker continues execution to completion and outputs logs correctly ### How to reproduce 1. Run one or more process instances and tasks 2. Hang the Master and then the Worker 3. Restart the Master and then the Worker ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9045
https://github.com/apache/dolphinscheduler/pull/9205
d3251c9bcc5744905723df7fab11a676029e7d6e
994de4c9027f02b713bc3b03daad965bc01a25e1
"2022-03-21T05:17:07Z"
java
"2022-03-28T03:36:56Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,039
["dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/project/workflow/WorkflowRunDialog.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-core/src/main/java/org/apache/dolphinscheduler/e2e/core/DolphinSchedulerExtension.java"]
[Feature][e2e] Suggest e2e test adapt M1 chip
### 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 ```E2E``` test does not support running in M1 chip. Suggest to support it. ### 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/9039
https://github.com/apache/dolphinscheduler/pull/9077
852597c9bf3340b679be8e11b5fe33b3e34e03e7
197accc60107370600719a7ade7e86bd80f69d26
"2022-03-21T01:54:42Z"
java
"2022-03-22T06:11:50Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,034
["dolphinscheduler-ui-next/src/store/project/task-node.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-conditions.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/format-data.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/types.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-canvas-init.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-cell-update.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-task-edit.ts"]
[Bug] [UI Next] When adding a condition node, the branch flow does not display the flow node
### Search before 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="945" alt="image" src="https://user-images.githubusercontent.com/95271106/159162110-bf30838e-f183-487f-af5d-8ebb2b0e5870.png"> ### What you expected to happen . ### How to reproduce . ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9034
https://github.com/apache/dolphinscheduler/pull/9049
d91711b3222044e619daeaef780bb3498bb83085
8bb6971c2f6a4c4e42ee1d06bd07ba7d75e6bc3d
"2022-03-20T12:28:53Z"
java
"2022-03-21T07:28:58Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,026
["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TaskGroupServiceImpl.java", "dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-task-group.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/format-data.ts"]
[Bug] [UI Next] When there is no task group, the task group name is always displayed in loading
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened When there is no task group, the task group name is always displayed in loading <img width="921" alt="image" src="https://user-images.githubusercontent.com/95271106/159150317-41a8e5e5-cc83-4c60-a400-80ac690308f1.png"> ### What you expected to happen . ### How to reproduce . ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9026
https://github.com/apache/dolphinscheduler/pull/9063
659c610457c566160b9211764580eab93fdf8c01
9b163249d60a3abaf63c834da173dbaa58ebb606
"2022-03-20T06:01:38Z"
java
"2022-03-21T13:52:07Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,025
["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TaskGroupServiceImpl.java", "dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-task-group.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/format-data.ts"]
[Bug] [UI Next] An error is reported when an ordinary user creates a workflow definition
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened 1. Ordinary users create workflows and drag shell components 2. Picture 404, JS error <img width="912" alt="image" src="https://user-images.githubusercontent.com/95271106/159149774-6eecc175-1059-407b-8d28-d6eadbc60c8d.png"> 3. No operation permission returned by the interface <img width="1108" alt="image" src="https://user-images.githubusercontent.com/95271106/159149807-efe39272-a5d9-4fe6-b068-5c7a667683c6.png"> ### What you expected to happen . ### How to reproduce . ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9025
https://github.com/apache/dolphinscheduler/pull/9063
659c610457c566160b9211764580eab93fdf8c01
9b163249d60a3abaf63c834da173dbaa58ebb606
"2022-03-20T05:49:14Z"
java
"2022-03-21T13:52:07Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,024
["dolphinscheduler-ui-next/src/views/projects/list/components/project-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/list/components/use-form.ts"]
[Bug][UI Next][V1.0.0-Alpha] When creating a new project, the last created project information is not cleared
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened 1. Create a new project. Enter the project name and description. The project is created successfully 2. Click "create project" again, the name and description of the last created project will be displayed, which should be empty <img width="869" alt="image" src="https://user-images.githubusercontent.com/95271106/159149588-24862cc6-53ae-44b9-99a1-b52be2df5d25.png"> ### What you expected to happen . ### How to reproduce . ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9024
https://github.com/apache/dolphinscheduler/pull/9037
ce8f0ad0a5c7cc37229d84383dbe3f0bb114839c
16bc226bad3d8c6ce43f8f4903453f65d2400a22
"2022-03-20T05:34:29Z"
java
"2022-03-21T01:22:05Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,021
["dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/WorkflowE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/project/workflow/WorkflowDefinitionTab.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/project/workflow/task/SubWorkflowTaskForm.java"]
[Feature][E2E] Recover sub_process e2e test in ui-next
### 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/9021
https://github.com/apache/dolphinscheduler/pull/9023
fd5e79bd803a287aa6f7074333029347bcceef1d
82394ba81d54cab5ada8be06990ec52e486a91b9
"2022-03-20T02:59:05Z"
java
"2022-03-20T05:11:48Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,015
["dolphinscheduler-ui-next/src/views/resource/task-group/option/components/form-modal.tsx"]
[Bug][UI Next][V1.0.0-Alpha] When assigning another project to the task group it can be updated successfully.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened When I assign another project to the task group It can be updated successfully. Edit a task group: <img width="1006" alt="image" src="https://user-images.githubusercontent.com/4928204/159114004-4e2b73f5-d5a7-4115-9a63-834fedbea181.png"> Assign another project and save it: <img width="878" alt="image" src="https://user-images.githubusercontent.com/4928204/159114006-b6f29f61-2d40-4316-bc78-fb58692f20de.png"> The project's name of the task group couldn't be modified: ![image](https://user-images.githubusercontent.com/4928204/159114015-0325d6c4-74b4-4e7a-836e-1d7dac32e8af.png) ### What you expected to happen I expect that I can modify the project's name for a task group. ### How to reproduce You can modify a task group and select another project. At last you will see it. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/9015
https://github.com/apache/dolphinscheduler/pull/9017
7b190e4ab3ef51bca4515e35dfb12c1fd250d525
48dc0a059cbe0335d13afb18b4f9e4a8a06c2fb1
"2022-03-19T08:39:14Z"
java
"2022-03-19T11:44:18Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,010
["dolphinscheduler-ui-next/src/service/modules/task-group/types.ts", "dolphinscheduler-ui-next/src/views/resource/task-group/option/components/form-modal.tsx", "dolphinscheduler-ui-next/src/views/resource/task-group/option/use-form.ts"]
[Bug][UI Next][V1.0.0-Alpha] There is a warning message in the task group configuration.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/159104979-49525721-b115-4f04-abf6-8aa7e6aa6e5f.png) ### What you expected to happen There is a warning message in the task group configuration. ### How to reproduce Fix. ### 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/9010
https://github.com/apache/dolphinscheduler/pull/9011
7ca204772b40e0c16e11c7ae9352893a3ee228fb
06ef1ae6cd882447d8257503af961a3ea31fbf11
"2022-03-19T03:29:37Z"
java
"2022-03-19T05:09:04Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,009
["dolphinscheduler-ui-next/src/views/resource/task-group/option/index.tsx"]
[Bug][UI Next][V1.0.0-Alpha] The information entered after the task group configuration is clicked on the Edit button is incorrect.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/159104734-3449d50a-0749-461c-86b3-eba8e45bf7fd.png) ### What you expected to happen The information entered after the task group configuration is clicked on the Edit button is incorrect. ### How to reproduce Make the entered information correct. ### 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/9009
https://github.com/apache/dolphinscheduler/pull/9012
d9109739a0e15db8b4b94aec738b3212a91f9712
7114c1531ec0a4733afbd6a75cb287e8ffa1a0d5
"2022-03-19T03:21:50Z"
java
"2022-03-19T06:51:31Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,003
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts"]
[Bug][UI Next][V1.0.0-Alpha] Alarm instance management edit button floating prompt 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 ![image](https://user-images.githubusercontent.com/19239641/159027463-1fe5d7b8-1494-4dbb-9c1f-83edcd9e3b25.png) ### What you expected to happen Alarm instance management edit button floating prompt error. ### How to reproduce Support i18n. ### 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/9003
https://github.com/apache/dolphinscheduler/pull/9005
d89c7ac8bb0f4c35cccb89b7cf05afa53fd5fb85
5c5f737a0049dc4c61d21091ef3d0ca10b339ade
"2022-03-18T15:00:53Z"
java
"2022-03-19T02:16:37Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,002
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts"]
[Bug][UI Next][V1.0.0-Alpha] WebexTeams alarm instance language support has problems.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/159027033-31f24680-a065-4cac-aa0e-f32c16bf7129.png) ### What you expected to happen WebexTeams alarm instance language support has problems. ### How to reproduce Support i18n. ### 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/9002
https://github.com/apache/dolphinscheduler/pull/9033
7cf79da5d9ee8ac2c6754632ff65d820b62e2a1c
ce8f0ad0a5c7cc37229d84383dbe3f0bb114839c
"2022-03-18T14:58:37Z"
java
"2022-03-20T09:52:40Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
9,001
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts"]
[Bug][UI Next][V1.0.0-Alpha] There is a problem with the language support of the PagerDuty alarm 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 ![image](https://user-images.githubusercontent.com/19239641/159026862-aeb82dc9-050f-40af-83d5-df439db11aab.png) ### What you expected to happen There is a problem with the language support of the PagerDuty alarm instance. ### How to reproduce Support i18n. ### 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/9001
https://github.com/apache/dolphinscheduler/pull/9027
82394ba81d54cab5ada8be06990ec52e486a91b9
7ada204bda28853891708d4b7a4ca1217d5a4718
"2022-03-18T14:56:57Z"
java
"2022-03-20T06:32:16Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,998
["dolphinscheduler-ui-next/src/views/monitor/servers/master/index.module.scss", "dolphinscheduler-ui-next/src/views/monitor/servers/master/index.tsx", "dolphinscheduler-ui-next/src/views/monitor/servers/master/master-modal.tsx", "dolphinscheduler-ui-next/src/views/monitor/servers/master/use-master.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/relation/components/Graph.tsx"]
[Bug][UI Next][V1.0.0-Alpha] Monitoring Center does not support multiple `master`.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Monitoring Center does not support multiple `master`. ### What you expected to happen Monitoring Center does not support multiple `master`. ### How to reproduce Support `master`. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8998
https://github.com/apache/dolphinscheduler/pull/9207
d7d756e7b0165bfcdc2e0bffcfcb45892e23feb5
8d60e920adcde0c8807b5aed6733939ef0ee8b23
"2022-03-18T14:47:41Z"
java
"2022-03-27T02:25:57Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,997
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui-next/src/service/modules/monitor/types.ts", "dolphinscheduler-ui-next/src/views/monitor/servers/master/index.tsx", "dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.module.scss", "dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.tsx", "dolphinscheduler-ui-next/src/views/monitor/servers/worker/use-worker.ts", "dolphinscheduler-ui-next/src/views/monitor/servers/worker/worker-modal.tsx", "dolphinscheduler-ui-next/src/views/resource/task-group/option/components/form-modal.tsx"]
[Bug][UI Next][V1.0.0-Alpha] Monitoring Center does not support multiple `worker`.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Monitoring Center does not support multiple `worker`. ### What you expected to happen Monitoring Center does not support multiple `worker`. ### How to reproduce Support `worker`. ### 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/8997
https://github.com/apache/dolphinscheduler/pull/9061
63a10037a66b4b420a320f026cebcb2ab08833d8
659c610457c566160b9211764580eab93fdf8c01
"2022-03-18T14:46:06Z"
java
"2022-03-21T12:00:25Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,996
["dolphinscheduler-ui-next/src/service/modules/task-group/types.ts", "dolphinscheduler-ui-next/src/views/resource/task-group/option/components/form-modal.tsx", "dolphinscheduler-ui-next/src/views/resource/task-group/option/use-form.ts"]
[Bug][UI Next][V1.0.0-Alpha] The new task group configuration item name is displayed as 0.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/159023165-46386271-69b0-4faa-8237-dbb006e400bc.png) ### What you expected to happen The new task group configuration item name is displayed as 0. ### How to reproduce should appear empty. ### 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/8996
https://github.com/apache/dolphinscheduler/pull/9014
7114c1531ec0a4733afbd6a75cb287e8ffa1a0d5
7b190e4ab3ef51bca4515e35dfb12c1fd250d525
"2022-03-18T14:39:39Z"
java
"2022-03-19T08:02:35Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,988
["dolphinscheduler-ui-next/src/views/projects/task/instance/use-table.ts"]
[Bug][UI Next][V1.0.0-Alpha] The Dry Run Flag column of task instance table displays error.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened The Dry Run Flag column of task instance table displays error. <img width="308" alt="image" src="https://user-images.githubusercontent.com/97265214/158967594-9784a151-6352-4ffb-9be5-acb1e05499f4.png"> ### What you expected to happen The Dry Run Flag column of task instance table should be NO or YES. <img width="282" alt="image" src="https://user-images.githubusercontent.com/97265214/158968527-ad15cc5a-4882-43fb-8b75-9ea8be15883d.png"> ### How to reproduce 1. Open the task 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/8988
https://github.com/apache/dolphinscheduler/pull/9038
16bc226bad3d8c6ce43f8f4903453f65d2400a22
3a87e76c47253eb98226df3aaf373cbfb000aef3
"2022-03-18T08:52:32Z"
java
"2022-03-21T02:18:54Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,985
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-dependent.ts"]
[Feature][UI] Add an option "thisMonthBegin" in dependency settings in dependent node
### 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 ![image](https://user-images.githubusercontent.com/92249031/158957639-0a90f4f6-581f-40af-856b-ec4baed303af.png) add thisMonthBegin in the drop down menu here, it will be useful in some cases, for example, we have lots of workflows which depended by other workflows, and the workflow being depended are running on 1st day of the month, if we had this option, things will be easyer. 有的工作流依赖本月初运行的工作流,如果在依赖节点中有 本月初 的选项,会很有用。 ### 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/8985
https://github.com/apache/dolphinscheduler/pull/9004
7d94adabc8073e00263f982ed7882b8cb7b03a63
d89c7ac8bb0f4c35cccb89b7cf05afa53fd5fb85
"2022-03-18T07:44:53Z"
java
"2022-03-19T01:51:36Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,983
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui-next/src/views/security/alarm-instance-manage/detail.tsx", "dolphinscheduler-ui-next/src/views/security/alarm-instance-manage/index.tsx"]
[Bug][UI Next][V1.0.0-Alpha] The new button in the English state of the alarm instance page lacks a space.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/158949622-265b1b4c-845b-4b1d-b8a6-fca2bf299380.png) ### What you expected to happen The new button in the English state of the alarm instance page lacks a space. ### How to reproduce Add space ### 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/8983
https://github.com/apache/dolphinscheduler/pull/8984
c29a51a8c71fd015cb459daa1ae77d1cc3255e28
9fbc62f7849836edb408c95cd409cad0df2f7225
"2022-03-18T06:37:49Z"
java
"2022-03-18T07:50:34Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,982
["dolphinscheduler-ui-next/src/service/modules/process-instances/types.ts", "dolphinscheduler-ui-next/src/utils/common.ts", "dolphinscheduler-ui-next/src/utils/types.ts", "dolphinscheduler-ui-next/src/views/projects/task/instance/types.ts", "dolphinscheduler-ui-next/src/views/projects/task/instance/use-table.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/types.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-node-status.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/instance/gantt/components/gantt-chart.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/instance/gantt/type.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/instance/use-table.ts"]
[Bug][UI Next][V1.0.0-Alpha] The state column of task instance table displays error.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened The state column of task instance table displays error. ### What you expected to happen Same as the old ui. ### How to reproduce 1. Open the task 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/8982
https://github.com/apache/dolphinscheduler/pull/8987
a93033b62051c5cd0c509c6d856c3a75697da6ae
85b2352abf868f55bdc3f38e33374c0ae927d535
"2022-03-18T06:30:53Z"
java
"2022-03-18T13:10:18Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,980
["dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/SlotCheckState.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/registry/ServerNodeManager.java", "dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterSchedulerService.java"]
[Bug] [Master] master can repeat processing command
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Question one : If master online or offline, the other active masters will execute the `updateMasterNodes` method, first initialize param of `MASTER_SLOT` to zero, and then get lock from zookeeper and execute `syncMasterNodes` method serially, it initialize param of `MASTER_SIZE` and `MASTER_SLOT`. so, during the get lock, the `MASTER_SIZE` and `MASTER_SLOT` of each master is valid and has the same value, so the scan command is likely to be repeated. Even if there is a double-check slot in `command2ProcessInstance`, if it cannot be changed before double-check, it will be repeated. (如果master上线或下线,会通知其他master执行updateMasterNodes方法,首先会初始化MASTER_SLOT=0 (0是有效值),然后串行争夺zk锁,抢到锁的才会执行syncMasterNodes,这里才会更改MASTER_SIZE。也就是为抢到锁的其他master的MASTER_SIZE相同,MASTER_SLOT都为0,所以此时扫描的command应该都是一样的。虽然再转为processintance之前有二次校验,但是此时如果还没获取到锁,其实值没变,依旧校验通过,所以会多个master会处理同一command) ![image](https://user-images.githubusercontent.com/29919212/158941329-15ec042f-eab7-48cd-a048-cf0623a7078a.png) ![image](https://user-images.githubusercontent.com/29919212/158941383-a39898ed-79b7-4890-bd36-42db749b9074.png) Question two: Because the timing of master processing is different, and the data will be deleted when completed, so the master query command that will skip part of the data when getting the next page. ![image](https://user-images.githubusercontent.com/29919212/158946899-08914c95-79c8-4a26-bbf9-878f334a3f31.png) ### What you expected to happen No 1. Do not repeat processing command No 2. As much as possible, ensure that the order of process instances is generated ### How to reproduce I am so sorry,I don't have enough nodes to test, I can provide a plan. 1. Prepare four master nodes 2. Sleep for 30 seconds after acquiring the lock 3. Large number of inserts command ### 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/8980
https://github.com/apache/dolphinscheduler/pull/9220
7553ae5a1707b1e735b7b192777bda20e454463f
258285e6bb196439efdf7fa18d536723e779fe4f
"2022-03-18T06:11:01Z"
java
"2022-03-27T15:33:30Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,971
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui-next/src/views/datasource/list/use-columns.ts"]
[Bug][UI Next][V1.0.0-Alpha] The table action button in the data source center lacks a floating prompt.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/158787045-8c454f01-0fca-465c-aa29-2271ef6bb48d.png) ### What you expected to happen The table action button in the data source center lacks a floating prompt. ### How to reproduce Data source center table operation button adds floating prompt ### 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/8971
https://github.com/apache/dolphinscheduler/pull/8977
045ef753d1276aafe938fa319b16f444be783845
a485771a738397dc8ced69636a3098eb89b47741
"2022-03-17T10:12:23Z"
java
"2022-03-18T06:29:51Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,969
["dolphinscheduler-ui-next/src/views/datasource/list/index.tsx", "dolphinscheduler-ui-next/src/views/datasource/list/use-columns.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/start-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/index.tsx"]
[Bug][UI Next][V1.0.0-Alpha] After the data source center switches languages, the header language does not change.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/158783003-40ce0a66-c4c4-4725-a93b-90c5d021e294.png) ### What you expected to happen After the data source center switches languages, the header language does not change. ### How to reproduce After the data source center switches the language, the header should also be changed accordingly. ### 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/8969
https://github.com/apache/dolphinscheduler/pull/8970
451f2849c10e972b61ed0c3f89e0e65791db95c5
045ef753d1276aafe938fa319b16f444be783845
"2022-03-17T09:50:29Z"
java
"2022-03-17T13:26:59Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,967
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui-next/src/views/security/alarm-instance-manage/use-columns.ts"]
[Bug][UI Next][V1.0.0-Alpha] There is no floating prompt for the table operation button in the alarm instance management.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/158780904-efe1b120-bef9-49f4-bd54-bb51da63a627.png) ### What you expected to happen There is no floating prompt for the table operation button in the alarm instance management. ### How to reproduce Add hover prompt. ### 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/8967
https://github.com/apache/dolphinscheduler/pull/8978
a485771a738397dc8ced69636a3098eb89b47741
c29a51a8c71fd015cb459daa1ae77d1cc3255e28
"2022-03-17T09:40:02Z"
java
"2022-03-18T06:32:22Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,965
["dolphinscheduler-ui-next/src/components/card/index.tsx", "dolphinscheduler-ui-next/src/views/projects/task/definition/use-table.ts", "dolphinscheduler-ui-next/src/views/resource/file/index.tsx", "dolphinscheduler-ui-next/src/views/resource/file/types.ts", "dolphinscheduler-ui-next/src/views/security/alarm-instance-manage/index.tsx"]
[Bug-FE][UI Next][V1.0.0-Alpha] Task definition page table scale imbalance problem.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Page display ratio error <img width="1920" alt="image" src="https://user-images.githubusercontent.com/76080484/158771315-21023658-4d0a-4bda-b3a5-1303a24f04c9.png"> ### What you expected to happen Wrong display ratio ### How to reproduce Task Definition click ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8965
https://github.com/apache/dolphinscheduler/pull/8992
85b2352abf868f55bdc3f38e33374c0ae927d535
1a7d88e84b76d0910f984490032d94b2e651cf83
"2022-03-17T09:05:45Z"
java
"2022-03-18T14:02:22Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,961
["dolphinscheduler-ui-next/src/views/security/alarm-instance-manage/index.tsx", "dolphinscheduler-ui-next/src/views/security/alarm-instance-manage/use-columns.ts"]
[Bug-FE][UI Next][V1.0.0-Alpha] English should be displayed here
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened English should be displayed here <img width="1915" alt="image" src="https://user-images.githubusercontent.com/76080484/158768663-3e3fa1d1-1e98-41d6-a767-7aea5a652e1c.png"> ### What you expected to happen English should be displayed here ### How to reproduce English should be displayed here ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8961
https://github.com/apache/dolphinscheduler/pull/8968
44c8d615a41a851a3547d34ff9332a97ee6d5997
451f2849c10e972b61ed0c3f89e0e65791db95c5
"2022-03-17T08:31:04Z"
java
"2022-03-17T12:16:11Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,959
["dolphinscheduler-ui-next/src/views/projects/workflow/instance/components/table-action.tsx"]
[Bug] [UI Next][V1.0.0-Alpha] The stop button shows the error tips and it should be clickable when the state is STOP
### Search before 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 stop button shows the error tips and it should be clickable when the state is STOP. <img width="1151" alt="image" src="https://user-images.githubusercontent.com/97265214/158758714-0983fec9-4a57-4135-b379-319bae09c69a.png"> ### What you expected to happen <img width="981" alt="image" src="https://user-images.githubusercontent.com/97265214/158758782-1b261b91-04e5-4064-9da6-aa481d443798.png"> ### How to reproduce 1. Open the process instance page. 2. Pick one record which state is STOP. ### 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/8959
https://github.com/apache/dolphinscheduler/pull/8960
2b63de029703d1b1222187a4bdf24b346101a9c9
b9e89b1922c979e1b4273564ee3bb8708e36f54a
"2022-03-17T07:34:53Z"
java
"2022-03-17T08:30:53Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,953
["dolphinscheduler-ui-next/src/views/projects/task/instance/use-table.ts"]
[Bug] [UI Next][V1.0.0-Alpha] The pagination of task instance table always shows one page
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened The pagination of task instance table always shows one page. ### What you expected to happen The pagination shows the correct page. ### How to reproduce 1. Open the task 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/8953
https://github.com/apache/dolphinscheduler/pull/8954
3955d84ce3c1652efec58a91da0e6e447a6882f9
aa7dcf3a2760009970ea220602e544a815c250ba
"2022-03-17T06:16:29Z"
java
"2022-03-17T07:19:10Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,945
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts"]
[Bug] [UI Next][V1.0.0-Alpha] The serial wait text language was not supported in task instance page.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened The serial wait text language was not supported in task instance page. <img width="273" alt="image" src="https://user-images.githubusercontent.com/97265214/158727439-af644e3d-df0a-430b-ac0d-d353baba1f18.png"> ### What you expected to happen <img width="393" alt="image" src="https://user-images.githubusercontent.com/97265214/158727461-262a75b4-52e4-40e1-a8be-0aaa633a4c2f.png"> ### How to reproduce 1. Open the task instance page. 2. Open the state options. 3. Scroll to bottom. ### 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/8945
https://github.com/apache/dolphinscheduler/pull/8949
e8e2e3a13d0922dc7c21894a4ba6e2f183ec5e92
8fcca27fcb4e1d01019c98126c30a56f8a1e5255
"2022-03-17T02:57:32Z"
java
"2022-03-17T04:36:16Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,944
["dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-cell-update.ts"]
[Bug] [UI Next][V1.0.0-Alpha] The edge was missing when I edited the first task node in dag page.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened The edge was missing when I edited the first task node in dag page. ### What you expected to happen The edge is not missing. ### How to reproduce 1. Open the dag page. 2. Edit the first task node. 3. Save the first task node. ### 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/8944
https://github.com/apache/dolphinscheduler/pull/8947
af9aedfd2d231dd6e911679d6b54084dc409bf54
e8e2e3a13d0922dc7c21894a4ba6e2f183ec5e92
"2022-03-17T02:52:32Z"
java
"2022-03-17T04:35:06Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,943
["dolphinscheduler-ui-next/src/views/projects/task/instance/use-table.ts"]
[Bug] [UI Next][V1.0.0-Alpha] The workflow instance name is not clickable in task instance table.
### Search before 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="1894" alt="image" src="https://user-images.githubusercontent.com/97265214/158726443-3c786f4e-6fe8-4b28-a420-e26ed87626de.png"> ### What you expected to happen It is clickable and links to instance list page. ### How to reproduce 1. Open the task 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/8943
https://github.com/apache/dolphinscheduler/pull/8952
192086e639d32ca09fe15ea27595e95e35dbd218
b86dce53a3ff1e8a3eed409acfd3e339c03d2470
"2022-03-17T02:47:45Z"
java
"2022-03-17T04:39:09Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,941
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/timing-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/types.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/use-form.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/use-modal.ts"]
[Bug] [UI Next][V1.0.0-Alpha] Enviroment name display error in 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 issues. ### What happened - Environment Name display -1 <img width="729" alt="image" src="https://user-images.githubusercontent.com/8847400/158725457-3f03c71c-3802-4235-97c5-7b22b5143b15.png"> ### What you expected to happen Environment Name display is blank. ### How to reproduce above ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8941
https://github.com/apache/dolphinscheduler/pull/8957
aa7dcf3a2760009970ea220602e544a815c250ba
2b63de029703d1b1222187a4bdf24b346101a9c9
"2022-03-17T02:39:53Z"
java
"2022-03-17T07:46:36Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,940
["dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx"]
[Bug] [UI Next][V1.0.0-Alpha] Workflow modal timeout alert internationalization
### Search before 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="1181" alt="image" src="https://user-images.githubusercontent.com/8847400/158723553-cc81fb55-4b09-478b-9b79-de66bbccc4d9.png"> ### What you expected to happen minute are displayed in english ### How to reproduce Open workflow definition and click save button to open modal ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8940
https://github.com/apache/dolphinscheduler/pull/8950
8fcca27fcb4e1d01019c98126c30a56f8a1e5255
192086e639d32ca09fe15ea27595e95e35dbd218
"2022-03-17T02:22:36Z"
java
"2022-03-17T04:37:40Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,931
["dolphinscheduler-ui-next/src/service/service.ts", "dolphinscheduler-ui-next/src/views/login/use-login.ts"]
[Bug] [UI Next][V1.0.0-Alpha] Auto logout bug
### Search before 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 refresh the browser on the resource manage page, I will automatically logout. <img width="1919" alt="image" src="https://user-images.githubusercontent.com/8847400/158556710-fbd18808-a785-4089-b251-7e3f92277955.png"> ### What you expected to happen Refresh the page ### How to reproduce Refresh the browser on the resource manage 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/8931
https://github.com/apache/dolphinscheduler/pull/8932
dde81eb93c88042f415cb5f6e0f55c75d6ef95fb
f9efd68878070ed549bc5f1bf0553b54b992c08b
"2022-03-16T09:16:37Z"
java
"2022-03-16T11:18:50Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,923
["dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/types.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-cell-update.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-task-edit.ts"]
[Bug] [UI Next][V1.0.0-Alpha] pre task can not be display when creating task in dag page
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![](https://vip1.loli.io/2022/03/14/KRBmyJE87ULVWxq.png) ### What you expected to happen above. ### How to reproduce above. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8923
https://github.com/apache/dolphinscheduler/pull/8928
4ec2db9e5c2a0a4c191cd2bbf7f42e77f771fc74
9cf5c6d00eb70166eeb58d750910935e60df6acd
"2022-03-16T03:25:59Z"
java
"2022-03-16T08:04:38Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,917
["dolphinscheduler-python/pydolphinscheduler/docs/source/config.rst", "dolphinscheduler-python/pydolphinscheduler/docs/source/howto/index.rst", "dolphinscheduler-python/pydolphinscheduler/docs/source/howto/remote-submit.rst", "dolphinscheduler-python/pydolphinscheduler/docs/source/index.rst", "dolphinscheduler-python/pydolphinscheduler/docs/source/start.rst"]
[Feature][python] Add docs for config.yml
### 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 #8585 we add `config.yml` but we do not add some docs about it. we should add some docs about it ### 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/8917
https://github.com/apache/dolphinscheduler/pull/9443
62284ae689e3e95f9951322650f62db84f09b47b
aaf2042ec46ced05e4d0d8f98ee8b0192b78a0f5
"2022-03-15T11:29:52Z"
java
"2022-04-12T01:42:28Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,894
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/table-action.tsx"]
[Bug-RD][UI Next][V1.0.0-Alpha] Remove workflow prompt 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 Remove workflow prompt error ![image](https://user-images.githubusercontent.com/76080484/158314632-0c953da9-789e-497f-a6b3-11dfb98d8b59.png) ### What you expected to happen Should show workflow name , shouldn't show workflow id ### How to reproduce 1、New workflow 2、On-line workflow 3、Delete workflow ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8894
https://github.com/apache/dolphinscheduler/pull/9057
e0e77013415f053ce228be1a3f9a14e08d361bda
cfe2473e578d25909ce74e968fb1a93aa6d225e6
"2022-03-15T05:49:53Z"
java
"2022-03-21T10:50:26Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,882
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui-next/src/service/modules/process-instances/index.ts", "dolphinscheduler-ui-next/src/service/modules/process-instances/types.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/detail-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-toolbar.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/types.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/instance/detail/index.tsx"]
[Bug][UI Next][V1.0.0-Alpha] save workflow in workflow instance detail page no response
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![](https://vip1.loli.io/2022/03/14/3m6CnApz7yaJg25.png) ### What you expected to happen above. ### How to reproduce above. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8882
https://github.com/apache/dolphinscheduler/pull/8926
e17c2bb56a0c844cd9760518ef3fe2505d0491c0
276a68a23e791eac08626febfed14e1ef2c01dd9
"2022-03-14T11:07:00Z"
java
"2022-03-16T06:18:35Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,879
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui-next/src/service/modules/process-definition/index.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/copy-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/start-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/use-form.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/use-modal.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/index.module.scss", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/index.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/use-table.ts"]
[Bug] [UI Next][V1.0.0-Alpha] missing batch delete and batch copy and batch export in workflow definition page
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![](https://vip2.loli.io/2022/03/14/9CSGzr5KdYxPOF8.png) ### What you expected to happen above. ### How to reproduce above. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8879
https://github.com/apache/dolphinscheduler/pull/8930
9cf5c6d00eb70166eeb58d750910935e60df6acd
dde81eb93c88042f415cb5f6e0f55c75d6ef95fb
"2022-03-14T10:20:48Z"
java
"2022-03-16T09:59:20Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,878
["dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/FileManageE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/FunctionManageE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/UdfManageE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/UserE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/WorkflowE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/security/UserPage.java", "dolphinscheduler-ui-next/src/views/security/user-manage/components/user-detail-modal.tsx"]
[Bug] [UI-Next] Cannot update tenant individually on user info site.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened When i want to update the tenant individually on user info site, but the 'password' field is a required. I think this password field should not be required, because i want to set tenant individually. <img width="590" alt="image" src="https://user-images.githubusercontent.com/29528966/158149934-7d95d106-2f27-488a-b73c-4e1a04bd4b91.png"> ### What you expected to happen I can update the tenant individually on user info site. ### How to reproduce update the user info ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8878
https://github.com/apache/dolphinscheduler/pull/9237
3e8231271351454dacd3e9b6edab0a17fdc81a68
0d0674df1f78d666fc7c2155629627380aa0a9b1
"2022-03-14T10:08:59Z"
java
"2022-03-28T09:55:15Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,877
["dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-cell-update.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-task-edit.ts"]
[Bug] [UI Next][V1.0.0-Alpha] The dag map displays error when I changed the pre 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 When I changed the pre tasks in task editor model, the dag map displays error. ### What you expected to happen The dag map displays correct as old ui page. <img width="711" alt="image" src="https://user-images.githubusercontent.com/97265214/158150470-364e99fd-f42d-4b89-9d27-dbbef65c9b09.png"> ### How to reproduce 1. Open the workflow definitions page. 2. Edit a task node. 3. Change the pre task, and then save. <img width="671" alt="image" src="https://user-images.githubusercontent.com/97265214/158150381-449d8aee-929f-4b54-99ca-e864adcb7ba2.png"> <img width="626" alt="image" src="https://user-images.githubusercontent.com/97265214/158150569-cf936097-1e51-493b-b92b-080153645336.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/8877
https://github.com/apache/dolphinscheduler/pull/8895
14bb722f6f8d8a4071ebe59f0ffa50df5d782f35
8bcbe2a1f466e588a119de32dfb3935af7614a35
"2022-03-14T10:06:57Z"
java
"2022-03-15T06:55:19Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,875
["dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-sqoop-source-type.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-sqoop-target-type.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-sqoop.ts"]
[Bug] [UI Next][V1.0.0-Alpha] sqoop task node missing some type when type is export
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/17822915/158135197-50850459-e0d9-40e5-8a7a-2fd8664a1b85.png) ### What you expected to happen above. ### How to reproduce above. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8875
https://github.com/apache/dolphinscheduler/pull/8898
3114c917484e50aa241d20b9593e98625f2680fb
8402367d826ae742dedc2c6cfbe51fbab57a1fcf
"2022-03-14T08:39:30Z"
java
"2022-03-15T09:09:58Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,855
["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java", "dolphinscheduler-ui/src/views/projects/workflow/definition/components/table-action.tsx", "dolphinscheduler-ui/src/views/projects/workflow/definition/use-table.ts"]
[Enhancement][API] Suggest support batch copy online process definitions.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement. ### Description If need to batch copy online process definitions,it should set the process definition offline,and then batch copy them. Whether can support batch copy online process definitions? <img width="400" alt="image" src="https://user-images.githubusercontent.com/15651066/158095998-aecc1ef8-4a1f-4e1f-8539-22a570552545.png"> ### Use case Whether can support batch copy online process definitions? ### 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/8855
https://github.com/apache/dolphinscheduler/pull/10678
491d5001fcaf4f1e4cd16807375435282ea35aef
4bbf3c8ea19cd4198d4b55aa2549d20ad70fb2ab
"2022-03-14T02:49:51Z"
java
"2022-07-01T03:30:01Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,844
[".github/workflows/e2e.yml", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/ClickhouseDataSourceE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/HiveDataSourceE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/MysqlDataSourceE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/PostgresDataSourceE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/cases/SqlServerDataSourceE2ETest.java", "dolphinscheduler-e2e/dolphinscheduler-e2e-case/src/test/java/org/apache/dolphinscheduler/e2e/pages/datasource/DataSourcePage.java"]
[Feature][E2E] Restore datasource center e2e test cases in ui-next
### 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 Restore datasource center e2e test cases in ui-next ### 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/8844
https://github.com/apache/dolphinscheduler/pull/8845
b0ffec5a4ca619f84aa44d1491c44d3fa0d8c7fe
2335453482df236841bf2147596a89ef359f7036
"2022-03-13T01:39:02Z"
java
"2022-03-13T04:33:19Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,836
["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ResourcesController.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/ResourcesService.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ResourcesServiceImpl.java", "dolphinscheduler-ui-next/src/layouts/content/components/timezone/index.module.scss", "dolphinscheduler-ui-next/src/service/modules/resources/index.ts", "dolphinscheduler-ui-next/src/service/modules/resources/types.ts", "dolphinscheduler-ui-next/src/views/resource/file/index.tsx"]
[Bug][UI Next][V1.0.0-Alpha] create directory/file path wrong
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![](https://vip2.loli.io/2022/03/11/qdZsCHgkaFJrmY3.png) ### What you expected to happen above. ### How to reproduce create index folder ```test2``` in root path. And then entering the ```test2``` folder. And then create folder ```test1```. And then returning to the root path. And then create folder ```test2``` success. In the same path can not contain two identical file/folder. There are two issues: 1. Send request path error while creating folder 2. Folder hierarchy display error ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8836
https://github.com/apache/dolphinscheduler/pull/8892
db64dcade8446267bce7423940f133492c07eaac
c7e80e42d79f56e237d296d430386860724588ff
"2022-03-11T08:33:58Z"
java
"2022-03-15T06:19:19Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,835
["dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-child-node.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/format-data.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/tasks/use-sub-process.ts", "dolphinscheduler-ui-next/src/views/projects/task/components/node/types.ts"]
[Bug(Serious)-FE][UI Next][V1.0.0-Alpha]Failed to save a workflow containing a child workflow node
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Failed to save a workflow containing a child workflow node <img width="1900" alt="image" src="https://user-images.githubusercontent.com/76080484/157829805-2aa693cf-6096-4477-af83-b437477bc27a.png"> ### What you expected to happen Successfully saved and ready to run ### How to reproduce 1、First complete a new workflow 2、Create a new workflow that is being edited 3、Drag a sub-workflow component 4、Set the sub-workflow as the first new workflow completed 5、Click Save Workflow to report an error The front end does not pass information about the child node to the back end ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8835
https://github.com/apache/dolphinscheduler/pull/8908
f726730d93d52e646d6b27fbddf23fae643f868c
9a93910ac5af8512e6f02f664995897e8e0459a5
"2022-03-11T08:23:35Z"
java
"2022-03-15T11:01:48Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,834
["dolphinscheduler-ui-next/src/components/card/index.tsx", "dolphinscheduler-ui-next/src/views/resource/file/index.module.scss", "dolphinscheduler-ui-next/src/views/resource/file/index.tsx", "dolphinscheduler-ui-next/src/views/resource/file/types.ts"]
[Bug][UI Next][V1.0.0-Alpha] missing path in resources center
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![](https://vip1.loli.io/2022/03/11/JrcaFs6LVqyMgtH.png) ![](https://vip1.loli.io/2022/03/11/BvUyISKoxnYpRtm.png) ### What you expected to happen above. ### How to reproduce above. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8834
https://github.com/apache/dolphinscheduler/pull/8963
b9e89b1922c979e1b4273564ee3bb8708e36f54a
44c8d615a41a851a3547d34ff9332a97ee6d5997
"2022-03-11T08:19:45Z"
java
"2022-03-17T09:52:04Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,831
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts"]
[Bug-FE][UI Next][V1.0.0-Alpha]Language display 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 Language display error <img width="1916" alt="image" src="https://user-images.githubusercontent.com/76080484/157797986-010601d9-55fe-48d9-aea0-ad1db096c8e5.png"> ### What you expected to happen Correct language presentation ### How to reproduce 1、Login 2、Switch Chinese 3、Click project management ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8831
https://github.com/apache/dolphinscheduler/pull/8925
276a68a23e791eac08626febfed14e1ef2c01dd9
4ec2db9e5c2a0a4c191cd2bbf7f42e77f771fc74
"2022-03-11T03:59:25Z"
java
"2022-03-16T06:30:30Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,810
["dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThreadPool.java"]
[Bug] [Master] Process Instance state does not change correctly and may cause Memory Leak
### Search before 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 `EventExecuteService`class, If an exception is throw in the `onSuccess` method, then `eventHandlerMap` (the dev branch is `multiThreadFilterMap`) cannot remove the thread of `WorkflowExecuteThread` normally, which has two effects: 1)The `WorkflowExecuteThread` will not handle any events, so processInstance state does not change; 2. There is a risk of memory leak. Also, I found that exceptions in the `onSuccess` method do not print out logs, making it difficult to locate the problem ![image](https://user-images.githubusercontent.com/29919212/157623159-30f6aa2b-0864-4e08-90d6-5a01246984c5.png) > ### What you expected to happen The state of `ProcessInstance`changes normally ### How to reproduce In the `onSuccess` method throw an exception, can reproduce. Note: 1. You need to print `eventHandlerMap`and will find that `WorkflowExecuteThread` is always held and will not be removed 2. You won't see any exception messages in the master log ### Anything else _No response_ ### Version 2.0.1 ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8810
https://github.com/apache/dolphinscheduler/pull/8896
a1bef43981b6a8f0f570dcb54551232696f9449c
3114c917484e50aa241d20b9593e98625f2680fb
"2022-03-10T09:02:44Z"
java
"2022-03-15T08:34:19Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,809
["dolphinscheduler-ui-next/src/assets/images/task-icons/data_quality.png", "dolphinscheduler-ui-next/src/assets/images/task-icons/data_quality_hover.png", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-sidebar.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag.module.scss"]
[Bug-FE][UI Next][V1.0.0-Alpha] DATA_QUALITY icon is null
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened DATA_QUALITY icon is null <img width="1902" alt="image" src="https://user-images.githubusercontent.com/76080484/157627147-8fab0a8a-8854-42b1-97f5-71ad7bdd3132.png"> ### What you expected to happen DATA_QUALITY icon According to the normal ### How to reproduce Click Create Workflow ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8809
https://github.com/apache/dolphinscheduler/pull/8822
939f280e7152f2f93f88cfb97f6952a8d87c16c4
a9c9eb00d09722069f02c56cd5974178894d22e4
"2022-03-10T08:59:03Z"
java
"2022-03-11T02:00:30Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,808
["dolphinscheduler-ui-next/src/components/modal/index.tsx", "dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui-next/src/views/projects/task/instance/components/log-modal.tsx"]
[Bug-FE][UI Next][V1.0.0-Alpha]Task instance logs are not automatically updated
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Task instance logs are not automatically updated <img width="1917" alt="image" src="https://user-images.githubusercontent.com/76080484/157622048-000faeae-86d3-469c-98fd-d3ae26f4aa9c.png"> ### What you expected to happen Task instance logs can be updated automatically ### How to reproduce 1. Execute a long workflow 2. View task instance logs 3. The log is not updated. You need to close the log window and open it again to update the latest log ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8808
https://github.com/apache/dolphinscheduler/pull/8912
32a5ccac72682b2efc1639a46d0fd6458b37216e
bde7d52c5d8322ebc6897771cc10725aefb19e9b
"2022-03-10T08:42:36Z"
java
"2022-03-15T12:58:10Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,806
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/use-modal.ts"]
[Bug-FE][UI Next][V1.0.0-Alpha] Repeat workflow import, the last import file was not cleared
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Repeat workflow import, the last import file was not cleared <img width="1914" alt="image" src="https://user-images.githubusercontent.com/76080484/157603260-5f082bec-19ad-4745-be65-19a42e4d1552.png"> ### What you expected to happen The file check box can be cleared when repeating workflow imports ### How to reproduce 1. Click Import Workflow 2. Select the workflow to be imported 3. Click Import 4. Click Import workflow again ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8806
https://github.com/apache/dolphinscheduler/pull/8905
242b5dd5b61a86c8a2baeb291d4def4d9fb07b26
58e341c19cde597a7e8deb84c6e5f2a53c857e78
"2022-03-10T06:40:12Z"
java
"2022-03-15T09:43:49Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,803
["dolphinscheduler-ui-next/src/views/projects/task/definition/components/version-modal.tsx"]
[Bug][UI Next][V1.0.0-Alpha] An error occurred while opening the task definition page.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened An error occurred while opening the task definition page. <img width="1822" alt="image" src="https://user-images.githubusercontent.com/97265214/157634610-e824671c-b822-4f2b-8f9d-95d790dddc5f.png"> ### What you expected to happen No error. ### How to reproduce Open the task definition 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/8803
https://github.com/apache/dolphinscheduler/pull/8814
f5711e4fcd744cdab8aefcf8f08a4a951481b83b
53fcffedb6108930fa32dad854826a5de319858a
"2022-03-10T06:23:59Z"
java
"2022-03-10T11:27:37Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,802
["dolphinscheduler-ui-next/src/views/projects/workflow/relation/components/Graph.tsx"]
[Bug-FE] [UI Next][V1.0.0-Alpha] The Workflow Relation page cannot be zoomed in or out using a scroll wheel
### Search before 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 Relation page cannot be zoomed in or out using a scroll wheel <img width="1918" alt="image" src="https://user-images.githubusercontent.com/76080484/157601202-a42caa98-ef3b-4180-8ea4-6cb644dcbe3b.png"> ### What you expected to happen The Workflow Relation page is zoomed in or out by scrolling on a scroll wheel ### How to reproduce The Workflow Relation page cannot be zoomed in or out using a scroll wheel ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8802
https://github.com/apache/dolphinscheduler/pull/8868
1f831405588626cec0f6d27b97695895d0ee7108
a7dd073e8304d1bcf3436a0606406690007f1b16
"2022-03-10T06:22:02Z"
java
"2022-03-14T09:07:52Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,801
["dolphinscheduler-ui-next/src/views/projects/task/components/node/detail-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/task/constants/task-type.ts"]
[Bug][UI Next][V1.0.0-Alpha] The instructions button always links to shell in task editor modal.
### Search before 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 instructions button always links to shell in task editor modal. ### What you expected to happen Links to the current task type instructions. ### How to reproduce 1. Open the task definition page 2. Click the create task button 3. Click the instructions button <img width="1781" alt="image" src="https://user-images.githubusercontent.com/97265214/157600308-84c744ea-1a86-4b4b-aefe-02b944bff5e5.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/8801
https://github.com/apache/dolphinscheduler/pull/8924
b1f7f788fda60d1f50bc4a398ede5c2b31246884
e17c2bb56a0c844cd9760518ef3fe2505d0491c0
"2022-03-10T06:20:54Z"
java
"2022-03-16T06:17:00Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,793
["dolphinscheduler-ui-next/.eslintignore", "dolphinscheduler-ui-next/.prettierignore", "dolphinscheduler-ui-next/public/lodash.min.js"]
[Improvement] [UI Next][V1.0.0-Alpha] Prettier and ESlint
### Search before 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 files in the public folder are formatted when prettier or eslint is running. ### What you expected to happen The files in the public folder are not formatted ### How to reproduce `pnpm run prettier . ` ### 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/8793
https://github.com/apache/dolphinscheduler/pull/8794
41b66b6adbf286671a9d9682d04b769ad9d21003
cb5910c95b8c2c069183361feb8f8181acdb4874
"2022-03-10T03:08:05Z"
java
"2022-03-10T03:59:23Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,790
["dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessService.java"]
[Bug] [Process Definition] Duplicate key TaskDefinition
### Search before 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'm trying to save an process instance which was upgrade from before version(v2.0.1) and it reporting this error: ![Uploading Screen Shot 2022-03-10 at 10.41.08 AM.png…]() ### What you expected to happen saved successfully ### How to reproduce upgrade from v2.0.1 to v2.0.3,and try to modify process instance and save ### Anything else _No response_ ### Version 2.0.3 ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8790
https://github.com/apache/dolphinscheduler/pull/8986
30746d9762b350df530187a628c58c547c7f7ba1
a93033b62051c5cd0c509c6d856c3a75697da6ae
"2022-03-10T02:42:43Z"
java
"2022-03-18T11:02:16Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,786
["dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/subUdfDirectory/index.vue"]
[Bug] [ui] the "RESOURCE_NOT_EXIST" error message when clicking udF resource list file navigation prompt
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Click on the folder in the UDF resource list and the navigation prompts "RESOURCE_NOT_EXIST" ### What you expected to happen After the interface is upgraded, you need to input the ID when clicking the navigation. ### How to reproduce In the resource management function, click the folder in the UDF resource list to navigate ### Anything else Expect a fix in the next version ### 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/8786
https://github.com/apache/dolphinscheduler/pull/8788
97a0eede25d27c8b603099c7c1592c70e468c6c0
0bce1a96a14cf46e9d5852d9778da02cbc1a2560
"2022-03-09T14:52:06Z"
java
"2022-03-10T03:31:37Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,778
["dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx"]
[Bug-FE][UI Next][V1.0.0-Alpha]The letters overlap with the input 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 The letters overlap with the input field <img width="1908" alt="image" src="https://user-images.githubusercontent.com/76080484/157419190-4f8aefed-7c03-4b47-9d6a-56e84ec8bdd4.png"> ### What you expected to happen There is some space between the letters and the input field ### How to reproduce When saving the workflow ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8778
https://github.com/apache/dolphinscheduler/pull/8821
20dd0c12ce0c723fe1f8a0ffd84017fff7d0db1c
939f280e7152f2f93f88cfb97f6952a8d87c16c4
"2022-03-09T10:12:58Z"
java
"2022-03-10T14:10:03Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,777
["dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx"]
[Bug][UI Next][V1.0.0-Alpha] An error occurred while importing workflow
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened An error occurred while importing workflow The reason for the error is that:tenant not exists <img width="1912" alt="image" src="https://user-images.githubusercontent.com/76080484/157416523-80ccb5fd-3750-44e0-bc33-a42ab8b20f15.png"> ### What you expected to happen The modification is saved successfully ### How to reproduce Import workflow and modify content click Save ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8777
https://github.com/apache/dolphinscheduler/pull/8797
38fba609cbc046c11678bbfc17253cc3f70aa8e9
bb1ba967cdd0715bb83f69406e3c184fcecd4294
"2022-03-09T09:55:23Z"
java
"2022-03-10T04:58:19Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,772
["dolphinscheduler-ui-next/src/layouts/content/components/user/use-dropdown.ts", "dolphinscheduler-ui-next/src/views/login/use-login.ts"]
[block-Bug][UI Next][V1.0.0-Alpha]Account login error
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened The account and password are correct, the login interface works properly, and an error message is displayed on the get_user_info interface <img width="1918" alt="image" src="https://user-images.githubusercontent.com/76080484/157405884-912e6b71-fbf5-4108-92bf-c405fe4f288d.png"> ### What you expected to happen Login successful ### How to reproduce Open the web page, enter the correct account password, and click login ### Anything else No ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8772
https://github.com/apache/dolphinscheduler/pull/8773
1d1c99b31f54ac2e5a7761242c9b20565a92a546
59410af0aeb3eeca6eed0395050c1159a8c4dc6c
"2022-03-09T08:52:43Z"
java
"2022-03-09T10:13:44Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,771
["dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-task-edit.ts"]
[Bug][UI Next][V1.0.0-Alpha] Workflow Duplicate key error
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened <img width="1909" alt="image" src="https://user-images.githubusercontent.com/8847400/157403000-5dc5ab06-1ae5-4bf5-9a3e-5655b2530c94.png"> ### What you expected to happen Workflow update success. ### How to reproduce Create a workflow and update it twice in a row. ### 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/8771
https://github.com/apache/dolphinscheduler/pull/8782
6a02b15e40d04e98891276b0e4f78312de602436
5ca886fdd1532328577e02ec3a5db38ac6268442
"2022-03-09T08:35:07Z"
java
"2022-03-09T14:16:33Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,758
["dolphinscheduler-worker/src/main/java/org/apache/dolphinscheduler/server/worker/processor/TaskExecuteProcessor.java"]
[Improvement] [dolphinscheduler-worker] the object 'preTaskCache' is never used, Suggested deletion
### 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 worker received task execute request command and cache 'TaskExecutionContext',and new Object of 'preTaskCache', but unused. maybe it have other useful? ![image](https://user-images.githubusercontent.com/29919212/157243873-4405aa6f-9132-4f07-acaa-375f16e08aa5.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/8758
https://github.com/apache/dolphinscheduler/pull/8795
6514ed2da27ec13775183ec9d7fac12e9132fe16
6a5b3bb8f92e41f2cab1ad688430b334bb0873f9
"2022-03-08T13:10:25Z"
java
"2022-03-14T06:14:21Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,757
["dolphinscheduler-ui-next/public/lodash.min.js", "dolphinscheduler-ui-next/src/views/projects/task/components/node/detail-modal.tsx"]
[Bug][UI Next][V1.0.0-Alpha] There isn't the text button of the help document in the task form.
### Search before 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 form there isn't the text button of the help document for this type of task. But in the old UI, you can use this text button to access the help document when clicking the button. The task form in the old UI seems like: ![image](https://user-images.githubusercontent.com/4928204/157206702-f3fcc62b-d601-4b0c-9a64-0eca84e3736d.png) The task form in the new UI seems like: ![image](https://user-images.githubusercontent.com/4928204/157206713-5b58c180-cbc3-4629-a951-d37bd54707f6.png) ### What you expected to happen I expect that I can use the text button to access the help document . ### How to reproduce You can see the task form in the new UI. ### 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/8757
https://github.com/apache/dolphinscheduler/pull/8775
59410af0aeb3eeca6eed0395050c1159a8c4dc6c
27c5944c2d7111a731eb42d57097ba4a9def2fe9
"2022-03-08T09:22:11Z"
java
"2022-03-09T10:15:07Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,746
["dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/canvas/contextMenu.vue"]
[Bug][UI] The copy node function will affect the original node
### Search before 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 dataX tasks, the copy node function will affect the original node. ### What you expected to happen Using the copy node function, the copied node should be independent and should not affect the original node. ### How to reproduce 1.Add a dataX task node <img width="850" alt="image" src="https://user-images.githubusercontent.com/51101283/157145576-fb8b2f5a-56ac-4b9d-9758-6ee6991836a2.png"> 2.Using the copy node feature <img width="333" alt="image" src="https://user-images.githubusercontent.com/51101283/157145629-f567ab01-0eda-4719-a2e3-9645f596bbff.png"> <img width="285" alt="image" src="https://user-images.githubusercontent.com/51101283/157145676-920719d5-333c-4ae9-a677-b1baa484efa7.png"> 3.Modify and save the copied node <img width="809" alt="image" src="https://user-images.githubusercontent.com/51101283/157145736-b615e307-6df4-4119-abed-658ceeb47b3f.png"> 4.View the original node again(The original node configuration is automatically modified) <img width="713" alt="image" src="https://user-images.githubusercontent.com/51101283/157145815-72fef3bd-4495-4208-aeac-1ebef0e6ea7c.png"> ### Anything else _No response_ ### Version 2.0.3 ### 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/8746
https://github.com/apache/dolphinscheduler/pull/8791
0bce1a96a14cf46e9d5852d9778da02cbc1a2560
41b66b6adbf286671a9d9682d04b769ad9d21003
"2022-03-08T01:12:35Z"
java
"2022-03-10T03:36:01Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,741
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/start-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/use-modal.ts"]
[Bug][UI Next][V1.0.0-Alpha] Startup Parameter not init
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Startup Parameter not init ![image](https://user-images.githubusercontent.com/8847400/157009054-1e04eec6-9d26-4a19-9d28-0e92f9c5cf15.png) ### What you expected to happen Startup Parameter init ### How to reproduce Set global param for workflow and open start modal ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8741
https://github.com/apache/dolphinscheduler/pull/8749
fc334b7b139960b061e6bb952029627d26f60005
799e2fd215799be050e3a4c9e58e699e93fbd8f7
"2022-03-07T09:59:03Z"
java
"2022-03-08T04:02:04Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,740
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/use-table.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/version-modal.tsx"]
[Bug][UI Next][V1.0.0-Alpha] Missing pagination in version info table.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![1646645939](https://user-images.githubusercontent.com/19239641/157006133-12acc88e-8e9e-4457-b1d4-6b34cc70b3b7.jpg) ![image](https://user-images.githubusercontent.com/19239641/157006184-4ef57764-528c-48e5-888f-5ed9942c4ca2.png) ### What you expected to happen Missing pagination in version info table. ### How to reproduce Supplemental pagination. ### 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/8740
https://github.com/apache/dolphinscheduler/pull/8785
5ca886fdd1532328577e02ec3a5db38ac6268442
97a0eede25d27c8b603099c7c1592c70e468c6c0
"2022-03-07T09:41:09Z"
java
"2022-03-09T14:31:38Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,730
["dolphinscheduler-ui-next/src/utils/regex.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx"]
[Bug][UI Next][V1.0.0-Alpha] The workflow timeout alarm time validate
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Update workflow definition error when I set the timeout alarm time 0.5 minutes. ![image](https://user-images.githubusercontent.com/8847400/156982280-2028678f-0538-476c-91e1-d24eeb640430.png) ![image](https://user-images.githubusercontent.com/8847400/156982558-2054e692-c022-407f-af7e-79ecebcaf498.png) ### What you expected to happen Update workflow success ### How to reproduce Update workflow success and set alarm timeout 0.5 minute. ### 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/8730
https://github.com/apache/dolphinscheduler/pull/8750
799e2fd215799be050e3a4c9e58e699e93fbd8f7
080a237b0d8f0adefde22c922ad2c52fa26c133e
"2022-03-07T06:55:00Z"
java
"2022-03-08T04:25:31Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,729
["dolphinscheduler-ui-next/package.json", "dolphinscheduler-ui-next/src/layouts/content/components/locales/use-dropdown.ts", "dolphinscheduler-ui-next/src/service/service.ts"]
[Bug][UI-Next][V1.0.0-Alpha] Backend locale should be consistent with ui
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![](https://vip1.loli.io/2022/03/07/5wBrp64WqRLK8d7.png) The backend uses the cookie name ```language``` to get the locale in dolphinscheduler-ui. ### What you expected to happen above. ### How to reproduce above. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8729
https://github.com/apache/dolphinscheduler/pull/8755
d3a8fa1d987e32ae5ff1c2755987c6b07254eb88
cbb756e1cbed47e296ccc1d25c3de9e7bc13009a
"2022-03-07T06:32:15Z"
java
"2022-03-08T09:51:35Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,726
["dolphinscheduler-ui-next/src/components/crontab/index.module.scss", "dolphinscheduler-ui-next/src/components/crontab/modules/day.tsx", "dolphinscheduler-ui-next/src/components/crontab/modules/time.tsx"]
[Bug][UI Next][V1.0.0-Alpha] Workflow timing input box cannot be displayed normally.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/8847400/156962299-033fa60a-7cf7-484e-9f05-ea75710b28c7.png) ### What you expected to happen week select and business input normal display ### How to reproduce Open timing for workflow ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8726
https://github.com/apache/dolphinscheduler/pull/8902
8402367d826ae742dedc2c6cfbe51fbab57a1fcf
f4b3ed263cadc696ae080c68d1b734a096afabed
"2022-03-07T03:27:36Z"
java
"2022-03-15T09:11:12Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,722
["dolphinscheduler-ui-next/src/locales/index.ts"]
[bug][UI Next][V1.0.0-Alpha] An error page
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened An error page <img width="1235" alt="image" src="https://user-images.githubusercontent.com/76080484/156958639-10e7e382-491a-4587-9183-4d2750c65854.png"> <img width="1123" alt="image" src="https://user-images.githubusercontent.com/76080484/156958683-59f9d8dc-60fc-4612-8c80-fcfc0629c2b1.png"> ### What you expected to happen Normal use ### How to reproduce Open the page ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8722
https://github.com/apache/dolphinscheduler/pull/8731
5c640789c3dacac3fee3555ad601ac09d6bee099
63e85f314d2a60e6e43480c8ef9897adf64a899f
"2022-03-07T02:43:09Z"
java
"2022-03-07T07:43:59Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,720
["dolphinscheduler-ui-next/src/views/projects/workflow/instance/components/table-action.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/instance/use-table.ts"]
[Bug][UI Next][V1.0.0-Alpha] Workflow instance table action button is too small to click.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/156956044-82335648-458f-4af0-bcf6-be4f5cbfb713.png) ### What you expected to happen Workflow instance table action button is too small to click. ### How to reproduce Make the table button larger. ### 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/8720
https://github.com/apache/dolphinscheduler/pull/8721
b0fc6e7a695bd6a20092dc2baf1bacf7e2caba30
ac18b195ec2c5e2792ab7e4da416a3740745d5b4
"2022-03-07T02:16:12Z"
java
"2022-03-07T03:11:23Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,717
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/timing/index.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/timing/use-table.ts"]
[Bug][UI Next][V1.0.0-Alpha] Regularly manage multilingual switching issues.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/156922308-f9813322-ac4e-44a7-8a83-0572645a8218.png) ### What you expected to happen Regularly manage multilingual switching issues. ### How to reproduce After switching the language, the header also changes with the language. ### 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/8717
https://github.com/apache/dolphinscheduler/pull/8718
698c795d4f3412e175fb28e569bf34c6d8085f0b
9c162c86c3fad159839e0e58b58a20c2bd0abcce
"2022-03-06T12:09:40Z"
java
"2022-03-06T13:36:11Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,715
["dolphinscheduler-ui-next/src/views/projects/task/components/node/detail-modal.tsx"]
[Bug][UI Next][V1.0.0-Alpha] Some data in the form of a task was gone when continuously clicking the same task node.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened When I want to edit the form of a task by double-clicking a task node in the dag, I found if I continuously double-click the same node, some data in the form was gone. ![image](https://user-images.githubusercontent.com/4928204/156917843-04128b1f-055e-4f64-b805-506b3ea15b2e.png) ![image](https://user-images.githubusercontent.com/4928204/156917857-30cdc4d2-9ef4-45a4-9ca2-59ecb0602e79.png) ### What you expected to happen I expect that the form component can display the data of the task. ### How to reproduce 1.Enter a process dag. 2. Double-click a task node. 3. Cancel the form. 4. Double-click the same task node and then you will see that. ### 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/8715
https://github.com/apache/dolphinscheduler/pull/8742
aa5392529bb8d2ba7b4b73a9527adf713f8884c8
6e2c2adcaa3320a009afa311a5efce48787a249c
"2022-03-06T09:46:28Z"
java
"2022-03-07T11:26:50Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,713
["README.md"]
[Bug] [DOCS] the link of cncf is incorrect
### Search before 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 link of cncf is incorrect ### What you expected to happen update the link to right ### How to reproduce notice the link ### 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/8713
https://github.com/apache/dolphinscheduler/pull/8714
b4fdb3c8eb72312cc60ceec832bac838acb28cba
e2af9054b39f73183490fd8a96efe919a29a488d
"2022-03-05T13:29:15Z"
java
"2022-03-05T14:11:59Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,710
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/table-action.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/timing/use-table.ts"]
[Bug][UI Next][V1.0.0-Alpha] There is no tooltip for timing management table editing and up and down buttons.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/156883414-c840f2bd-38e9-495d-9c01-c366c9ffe961.png) ### What you expected to happen There is no tooltip for regular management table editing and up and down buttons. ### How to reproduce Add tooltip. ### 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/8710
https://github.com/apache/dolphinscheduler/pull/8716
e2af9054b39f73183490fd8a96efe919a29a488d
698c795d4f3412e175fb28e569bf34c6d8085f0b
"2022-03-05T12:41:37Z"
java
"2022-03-06T12:59:20Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,709
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/timing/use-table.ts"]
[Bug][UI Next][V1.0.0-Alpha] The timing management list operation button is too small to be clicked accurately.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/156883277-7d0da2ff-605f-4b0b-9904-64303c34f1eb.png) ### What you expected to happen button is too small ### How to reproduce Make the button bigger ### 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/8709
https://github.com/apache/dolphinscheduler/pull/8712
26f50660f39dfec18d4d03343b49c5b8b423a1d5
b4fdb3c8eb72312cc60ceec832bac838acb28cba
"2022-03-05T12:38:39Z"
java
"2022-03-05T13:56:31Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,690
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/start-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/use-form.ts"]
[Bug][UI Next][V1.0.0-Alpha] Workflow execution 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 Workflow execution error <img width="1571" alt="image" src="https://user-images.githubusercontent.com/76080484/156691383-e0cdcb28-94cf-41a2-bfad-8e5587c99dab.png"> If this ” execType“ field is not false, it will fail, otherwise it will succeed <img width="1533" alt="image" src="https://user-images.githubusercontent.com/76080484/156691502-16627d54-1110-42da-88d9-6ba15c095f76.png"> path:/executors/start-process-instance <img width="997" alt="image" src="https://user-images.githubusercontent.com/76080484/156691724-8089dfe4-af2b-4d4c-8b11-b914a2c21f3e.png"> ### What you expected to happen normal operation ### How to reproduce Click Run workflow ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8690
https://github.com/apache/dolphinscheduler/pull/8734
c51f2e4a7cdfca19cc0477871c9a589b684354f9
e34f6fc807900c60cdc9bb5dff96701a94e8d17c
"2022-03-04T03:16:24Z"
java
"2022-03-07T09:04:37Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,686
["dolphinscheduler-ui-next/src/App.tsx"]
[Bug][UI Next][V1.0.0-Alpha] The problem of incomplete Chinese support for all date pickers in the project.
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![image](https://user-images.githubusercontent.com/19239641/156563819-9ea997f8-cf56-424c-bd31-543d2f9ee980.png) ### What you expected to happen Chinese support is not perfect ### How to reproduce Support Chinese ### 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/8686
https://github.com/apache/dolphinscheduler/pull/8688
67a6813e9c5831b44037f10ecd532cc44e3caf7d
403c672e6d03ebc1282da2dbf1889c4db38fee95
"2022-03-03T12:23:31Z"
java
"2022-03-03T14:19:10Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,680
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/start-modal.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/timing-modal.tsx"]
[Bug][UI Next][V1.0.0-Alpha] If the drop-down box is selected, it cannot be deleted, and there is no clear button
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened If the drop-down box is selected, it cannot be deleted, and there is no clear button ![image](https://user-images.githubusercontent.com/76080484/156514799-5b6137db-ffde-40a5-80af-e29325daceb3.png) ### What you expected to happen I think I can clear the selection box ### How to reproduce When running a workflow ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8680
https://github.com/apache/dolphinscheduler/pull/8700
79733643aab64af78c13f59fcaf2f9b3a4e3a068
63c476ac413597a30dd0f5dd92797c2873449825
"2022-03-03T07:16:09Z"
java
"2022-03-04T13:15:36Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,671
["dolphinscheduler-dist/pom.xml", "dolphinscheduler-python/pom.xml", "pom.xml"]
[Feature][python] Add asc file for python api release file
### 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 #8343 we already add python tarball and wheel to final distribute files. But it do not add asc file to it(main apache bin and src tarball have). we have to generate asc file by ```sh gpg --yes --armor --local-user "[email protected]" --output "apache-dolphinscheduler-2.0.5.tar.gz.asc" --detach-sig "apache-dolphinscheduler-2.0.5.tar.gz" gpg --yes --armor --local-user "[email protected]" --output "apache_dolphinscheduler-2.0.5-py3-none-any.whl.asc" --detach-sig "apache_dolphinscheduler-2.0.5-py3-none-any.whl" ``` we should better make it auto generate. ### 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/8671
https://github.com/apache/dolphinscheduler/pull/8999
48dc0a059cbe0335d13afb18b4f9e4a8a06c2fb1
fd5e79bd803a287aa6f7074333029347bcceef1d
"2022-03-02T14:40:49Z"
java
"2022-03-19T14:07:24Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,648
["dolphinscheduler-ui-next/index.html", "dolphinscheduler-ui-next/public/lodash.min.js"]
[Bug][UI Next][V1.0.0-Alpha] create workflow definition error in standalone 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 ![](https://vip1.loli.io/2022/03/02/8sUmlo53pMhLAIX.png) ![](https://vip1.loli.io/2022/03/02/gRPzuWv7V5Mb93O.png) No requests were sent in standalone mode. ```http://localhost:3000/dolphinscheduler/tenants/list``` request will be sent In dev mode. ### What you expected to happen successfully. ### How to reproduce create workflow definition in standalone mode. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8648
https://github.com/apache/dolphinscheduler/pull/8767
fcbaaf5de62ad11b0d7fd445741af3dab4227149
1d1c99b31f54ac2e5a7761242c9b20565a92a546
"2022-03-02T03:07:15Z"
java
"2022-03-09T08:31:42Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,633
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/table-action.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/use-table.ts"]
[Bug][UI Next][V1.0.0-Alpha] Workflow definition click to modify does not get the expected response
### Search before 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="1429" alt="image" src="https://user-images.githubusercontent.com/76080484/156142995-927b79fd-ab03-4a2a-9c8a-84a9edf24851.png"> ### What you expected to happen 成功跳转到工作流编辑页面 ### How to reproduce 点击编辑 ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8633
https://github.com/apache/dolphinscheduler/pull/8705
6dc4be54e0b4f71c2ed2c4505bcaa0cb4d46cc73
304d7a76587ccff45ae65bdc96d895b697c4a88f
"2022-03-01T09:37:56Z"
java
"2022-03-05T05:35:26Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,632
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts", "dolphinscheduler-ui-next/src/locales/modules/zh_CN.ts", "dolphinscheduler-ui-next/src/views/projects/task/instance/use-table.ts"]
[Bug][UI Next][V1.0.0-Alpha] The task instance button prompts an error
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened 项目管理-项目实例-任务-任务实例,执行失败任务强制成功按钮提示错误 <img width="1425" alt="image" src="https://user-images.githubusercontent.com/76080484/156141468-b17f0e1f-e62a-4261-8c5a-a47a0748da45.png"> ### What you expected to happen 按钮提示为 强制成功 ### How to reproduce 项目管理-项目实例-任务-任务实例,执行失败任务强制成功按钮提示错误 ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8632
https://github.com/apache/dolphinscheduler/pull/8668
60a00490c6706228de22feedf9ea9c6b5a40e934
8096a1063bb6b23066b60da856d1349c04ee9c81
"2022-03-01T09:25:56Z"
java
"2022-03-02T13:04:47Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,624
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/timing-modal.tsx"]
[Bug][UI-Next][V1.0.0-Alpha] click timing error in process definition page
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![](https://vip2.loli.io/2022/03/01/7cNiWD5Uyw18EFB.png) ### What you expected to happen click successfully. ### How to reproduce above. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8624
https://github.com/apache/dolphinscheduler/pull/8704
304d7a76587ccff45ae65bdc96d895b697c4a88f
26f50660f39dfec18d4d03343b49c5b8b423a1d5
"2022-03-01T08:38:44Z"
java
"2022-03-05T06:40:26Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,623
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/table-action.tsx"]
[Bug][UI-Next][V1.0.0-Alpha] process definition state prompt message wrong
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened ![](https://vip2.loli.io/2022/03/01/HoMe6y1vkaVYXx5.png) ### What you expected to happen In online state should prompt offline. ### How to reproduce above. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8623
https://github.com/apache/dolphinscheduler/pull/8695
79c9d7dd36b0677fdb6e6d68e9cb796ae4a06044
e1862a81ba8407a2af0ed8cc7209b3e663171d59
"2022-03-01T08:36:19Z"
java
"2022-03-04T07:57:03Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,622
["dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/table-action.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/definition/use-table.ts"]
[Feature][UI-Next][V1.0.0-Alpha] process definition/instance operation button too small to click
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar feature requirement. ### Description ![](https://vip1.loli.io/2022/03/01/7PDMXIA8U4wtWrf.png) ### 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/8622
https://github.com/apache/dolphinscheduler/pull/8702
63c476ac413597a30dd0f5dd92797c2873449825
6dc4be54e0b4f71c2ed2c4505bcaa0cb4d46cc73
"2022-03-01T08:32:48Z"
java
"2022-03-05T03:58:16Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,617
["dolphinscheduler-ui-next/src/locales/modules/en_US.ts"]
[Bug][UI Next][V1.0.0-Alpha] Workflow version info language internationalization
### Search before 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 info language internationalization was not handled in workflow. ![image](https://user-images.githubusercontent.com/8847400/156130132-968ec1c0-ba81-4331-960a-41d626a13f5c.png) ### What you expected to happen Display english ### How to reproduce Open workflow definition list and click version info ### 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/8617
https://github.com/apache/dolphinscheduler/pull/8630
985b4e85208ce2b1ca0e7afeacf9b7f3a5ee4d98
102828409f0c31a1f5d5372d8881a6e76ce9b7b1
"2022-03-01T08:14:42Z"
java
"2022-03-01T10:26:28Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,616
["dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TaskGroupServiceImpl.java", "dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/WorkFlowLineageServiceImpl.java", "dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/WorkFlowLineageMapper.java", "dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/WorkFlowLineageMapper.xml"]
[Bug] [WorkFlowLineage] work flow lineage search result missing 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 ![](https://vip2.loli.io/2022/03/01/Tx7jRAFYJMp2irC.png) ![](https://vip1.loli.io/2022/03/01/gQmCFqZud38hjHi.png) ### What you expected to happen work flow lineage's result is right. ### How to reproduce above. ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8616
https://github.com/apache/dolphinscheduler/pull/8684
403c672e6d03ebc1282da2dbf1889c4db38fee95
2ab8c1ca7d820c8921fa062b0757c9b70b00048c
"2022-03-01T08:11:13Z"
java
"2022-03-04T06:05:59Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,615
["dolphinscheduler-ui-next/src/service/modules/resources/index.ts", "dolphinscheduler-ui-next/src/service/modules/resources/types.ts", "dolphinscheduler-ui-next/src/views/resource/file/create/index.tsx", "dolphinscheduler-ui-next/src/views/resource/file/edit/index.tsx", "dolphinscheduler-ui-next/src/views/resource/file/edit/use-edit.ts"]
[Bug][UI Next][V1.0.0-Alpha] Click the resource manage file editing page to display blank bug
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Page is blank when I clicking file edit of resource manage ### What you expected to happen The page displays the file editing contents. ### How to reproduce Open Resources -> File Mange in UI. click file edit button ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8615
https://github.com/apache/dolphinscheduler/pull/8631
7b66b66e8ffbadeadc0b7f3081e7e218b776932c
18c384c60aa87159a761ae35d67ebcdec8a6009f
"2022-03-01T08:07:19Z"
java
"2022-03-01T14:21:07Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,610
["dolphinscheduler-ui-next/src/views/projects/list/index.module.scss", "dolphinscheduler-ui-next/src/views/projects/list/use-table.ts"]
[Bug][UI Next][V1.0.0-Alpha] The display of the project name is too long, causing UI confusion
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened 项目名称展示超长导致UI错乱 <img width="1429" alt="image" src="https://user-images.githubusercontent.com/76080484/156125508-41cc27d3-0303-4a53-810b-a7ebff15b940.png"> ### What you expected to happen 显示项目名称展示字数,超出部分由省略号代替,鼠标悬浮上面时弹窗展示全量名称 ### How to reproduce 新建项目 ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
https://github.com/apache/dolphinscheduler/issues/8610
https://github.com/apache/dolphinscheduler/pull/8669
8096a1063bb6b23066b60da856d1349c04ee9c81
43fc7ec968e11568b5c07ab21b6d849646022fb3
"2022-03-01T07:40:54Z"
java
"2022-03-02T13:52:58Z"
closed
apache/dolphinscheduler
https://github.com/apache/dolphinscheduler
8,598
["dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-context-menu.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/types.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-node-menu.ts", "dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/use-node-status.ts"]
[Bug][UI Next][V1.0.0-Alpha] Workflow instance menu readonly bug
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened Dag node menu can't click when when I operate the workflow instance ![image](https://user-images.githubusercontent.com/8847400/156115287-b82a84ae-293a-45dc-82fa-ac09c69b4749.png) ### What you expected to happen `start` and other button allow clicking. ### How to reproduce Open workflow -> worflow instance. Right-click the dag node. ### 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/8598
https://github.com/apache/dolphinscheduler/pull/8603
09f70353b8c7fe73efac9674998120f11f398a51
985b4e85208ce2b1ca0e7afeacf9b7f3a5ee4d98
"2022-03-01T06:18:37Z"
java
"2022-03-01T08:59:35Z"