GitHub user ebautistabar opened a pull request:

    https://github.com/apache/flink/pull/953

    [FLINK-2357] [web dashboard] Shows job configuration in new dashboard

    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:
    ```json
    {
        "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
    
    Please, let me know if there is anything to change, improve, etc.

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/ebautistabar/flink add-job-config-new-ui

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/flink/pull/953.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #953
    
----
commit b51444262bdb8aba4b1f6a755a36f029af066a79
Author: Enrique Bautista <[email protected]>
Date:   2015-07-29T20:49:13Z

    [FLINK-2357] [web dashboard] Shows job configuration in new dashboard

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to