You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/04/20 07:16:20 UTC

[GitHub] [dolphinscheduler] SbloodyS opened a new issue, #9618: [Feature][UI-Next] Refactor get dependent node information api

SbloodyS opened a new issue, #9618:
URL: https://github.com/apache/dolphinscheduler/issues/9618

   ### 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
   
   1. Using ```projects/list``` api to fetch all project list replacing ```projects/created-and-authed```
   eg:
   request:
   curl -X GET "http://127.0.0.1:12345/dolphinscheduler/projects/list"
   
   response:
   {
     "code": 0,
     "msg": "success",
     "data": [
       {
         "id": 1, //project id
         "userId": 1,
         "userName": null,
         "code": 5249046055328,
         "name": "test",
         "description": "",
         "createTime": "2022-04-20 15:09:32",
         "updateTime": "2022-04-20 15:09:32",
         "perm": 0,
         "defCount": 0,
         "instRunningCount": 0
       }
     ],
     "failed": false,
     "success": true
   }
   
   2. Using ```process-definition/query-process-definition-list``` to fetch all process definition info in a project.
   eg:
   request: 
   curl -X GET "http://127.0.0.1:12345/dolphinscheduler/projects/5249046055328/process-definition/query-process-definition-list"
   
   response:
   {
     "code": 0,
     "msg": "success",
     "data": [
       {
         "code": 5249050625184, //process definition code
         "name": "workflow1", //process definition name
         "version": 1 //process definition version
       }
     ],
     "failed": false,
     "success": true
   }
   
   
   4. Using ```process-definition/query-task-definition-list``` to fetch all task definition info in a project.
   eg:
   request:
   curl -X GET "http://127.0.0.1:12345/dolphinscheduler/projects/5249046055328/process-definition/query-task-definition-list"
   
   response:
   {
     "code": 0,
     "msg": "success",
     "data": [
       {
         "code": 5249047099680, //task definition code
         "name": "task1", //task definition name
         "version": 1 //task definition version
       },
       {
         "code": 5249048072864,
         "name": "task2",
         "version": 1
       },
       {
         "code": 5249049155232,
         "name": "task3",
         "version": 1
       }
     ],
     "failed": false,
     "success": true
   }
   
   5. Add dependent process/task status icon as we do in ```2.0.X``` version.
   ![](https://vip2.loli.io/2022/04/20/TSLCOHXcRwPaQgZ.png)
   
   ### Use case
   
   _No response_
   
   ### Related issues
   
   #8922 
   
   ### 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)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #9618: [Feature][UI-Next][V1.0.0-Beta] Refactor get dependent node information api

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #9618:
URL: https://github.com/apache/dolphinscheduler/issues/9618#issuecomment-1103562033

   Thank you for your feedback, we have received your issue, Please wait patiently for a reply.
   * In order for us to understand your request as soon as possible, please provide detailed information、version or pictures.
   * If you haven't received a reply for a long time, you can [join our slack](https://join.slack.com/t/asf-dolphinscheduler/shared_invite/zt-omtdhuio-_JISsxYhiVsltmC5h38yfw) and send your question to channel `#troubleshooting`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] Amy0104 commented on issue #9618: [Feature][UI-Next] Refactor get dependent node information api

Posted by GitBox <gi...@apache.org>.
Amy0104 commented on issue #9618:
URL: https://github.com/apache/dolphinscheduler/issues/9618#issuecomment-1103559953

   I will follow up on this.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] devosend closed issue #9618: [Feature][UI-Next][V1.0.0-Beta] Refactor get dependent node information api

Posted by GitBox <gi...@apache.org>.
devosend closed issue #9618: [Feature][UI-Next][V1.0.0-Beta] Refactor get dependent node information api
URL: https://github.com/apache/dolphinscheduler/issues/9618


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org