flink报错:akka.pattern.AskTimeoutException: is that the recipient actor didn‘t send a reply

通讯超时

akka.pattern.AskTimeoutException: Ask timed out on [Actor[akka://...]] after [10000 ms]

Akka 超时导致,一般有两种原因:一是集群负载比较大或者网络比较拥塞,二是业务逻辑同步调用耗时的外部服务。

如果负载或网络问题无法彻底缓解,需考虑调大 akka.ask.timeout 参数的值(默认只有 10 秒);

另外,调用外部服务时尽量异步操作(Async I/O)

Caused by: java.util.concurrent.CompletionException: akka.pattern.AskTimeoutException: Ask timed out on [Actor[akka.tcp://flink@flink88:15265/user/taskmanager_0#6643546564]] after [10000 ms]. Sender[null] sent message of type "org.apache.flink.runtime.rpc.messages.RemoteRpcInvocation".

官方默认

 

 

在flink-conf.yaml中添加或修改:akka.ask.timeout: 100s web.timeout: 100000

你可能感兴趣的:(Flink,flink,大数据)