Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update state and JIRA
Current stateUnder DiscussionAccepted
Discussion threadhttps://lists.apache.org/thread/7wtj8x3zr6fps4hrkk37lb1cyptpqvzd
JIRA

Jira
serverASF JIRA

here (<- link to https://issues.apache.org/jira/browse/FLINK-XXXX)

serverId5aa69414-a9e9-3523-82ec-879b028fb15b
keyFLINK-38972

Released<Flink Version>

Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).

...

/applications/:applicationid/jobmanager/config

Verb: GET

Response code:200 OK

Returns the jobmanager's configuration of a specific application.

Request ▾

{}

Response ▾

{
  "type" : "array",
  "items" : {
    "type" : "object",
    "id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:ConfigurationInfoEntry",
    "properties" : {
      "key" : {
        "type" : "string"
      },
      "value" : {
        "type" : "string"
      }
    }
  }
}

Response example
[
  {"key":"jobmanager.rpc.port","value":"6123"},
  {"key":"rest.port","value":"8081"},
  {"key":"jobmanager.bind-host","value":"localhost"},
  {"key":"taskmanager.host","value":"localhost"},
  {"key":"execution.state-recovery.path","value":"/path/to/checkpoint"},
  ...
]


Configuration

We plan to add the following configuration options.

...