Details
-
Sub-task
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.10.0
-
None
Description
I wanted to change the configuration display, as in #927, but it wasn't implemented in the new UI. So I decided to create this PR to take care of it.
Added handler for new endpoint /jobs/:jobid/config
The endpoint is hit when selecting a job in the UI
Example of response:
{ "execution-config": { "execution-mode": "PIPELINED", "job-parallelism": -1, "max-execution-retries": -1, "object-reuse-mode": false, "user-config": { "example": true } }, "jid": "dedc15369efa94eb1e3ad6482f1344b6", "name": "WordCount Example" }
The info is stored in the existing $rootScope.job object
Added new tab in job display to show the config