Repository: flink Updated Branches: refs/heads/master f8f9cae19 -> 56d3611f3
[FLINK-5700] [docs] Document akka.client.timeout configuration parameter Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/56d3611f Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/56d3611f Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/56d3611f Branch: refs/heads/master Commit: 56d3611f3138a5605f61b4d1e0f59238f04296c6 Parents: f8f9cae Author: Till Rohrmann <[email protected]> Authored: Thu Feb 2 22:31:14 2017 +0100 Committer: Till Rohrmann <[email protected]> Committed: Thu Feb 2 22:32:59 2017 +0100 ---------------------------------------------------------------------- docs/setup/config.md | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/56d3611f/docs/setup/config.md ---------------------------------------------------------------------- diff --git a/docs/setup/config.md b/docs/setup/config.md index 1dc8cc3..82a5c45 100644 --- a/docs/setup/config.md +++ b/docs/setup/config.md @@ -279,6 +279,8 @@ The following parameters configure Flink's JobManager and TaskManagers. - `akka.lookup.timeout`: Timeout used for the lookup of the JobManager. The timeout value has to contain a time-unit specifier (ms/s/min/h/d) (DEFAULT: **10 s**). +- `akka.client.timeout`: Timeout used by Flink clients (e.g. `CliFrontend`, `ClusterClient`) when communicating with the Flink cluster. The timeout value has to contain a time-unit specifier (ms/s/min/h/d) (DEFAULT: **60 s**). + - `akka.framesize`: Maximum size of messages which are sent between the JobManager and the TaskManagers. If Flink fails because messages exceed this limit, then you should increase it. The message size requires a size-unit specifier (DEFAULT: **10485760b**). - `akka.watch.heartbeat.interval`: Heartbeat interval for Akka's DeathWatch mechanism to detect dead TaskManagers. If TaskManagers are wrongly marked dead because of lost or delayed heartbeat messages, then you should increase this value. A thorough description of Akka's DeathWatch can be found [here](http://doc.akka.io/docs/akka/snapshot/scala/remoting.html#failure-detector) (DEFAULT: **10 s**).
