Re: Flink AskTimeoutException killing the jobs

2020-07-06 Thread M Singh
user/resourcemanager#-1602864959]] after [1 ms]. Message of type [org.apache.flink.runtime.rpc.messages.LocalFencedMessage]. A typical reason for `AskTimeoutException` is that the recipient actor didn't send a reply.at akka.pattern.PromiseActorRef$$anonfun$2.apply(As

Re: Flink AskTimeoutException killing the jobs

2020-07-05 Thread Xintong Song
ausing the flink jobs to > die. > > Caused by: akka.pattern.AskTimeoutException: Ask timed out on > [Actor[akka://flink/user/resourcemanager#-1602864959]] after [1 ms]. > Message of type [org.apache.flink.runtime.rpc.messages.LocalFencedMessage]. > A typical reason for `AskTime

Re: Flink AskTimeoutException killing the jobs

2020-07-03 Thread M Singh
ical reason for `AskTimeoutException` is that the recipient actor didn't send a reply.at akka.pattern.PromiseActorRef$$anonfun$2.apply(AskSupport.scala:635)at akka.pattern.PromiseActorRef$$anonfun$2.apply(AskSupport.scala:635)at akka.pattern.PromiseActorRef$$anonfun$1.apply$mcV$sp(

Re: Flink AskTimeoutException killing the jobs

2020-07-02 Thread Xintong Song
s.LocalFencedMessage]. > A typical reason for `AskTimeoutException` is that the recipient actor > didn't send a reply. > at akka.pattern.PromiseActorRef$$anonfun$2.apply(AskSupport.scala:635) > at akka.pattern.PromiseActorRef$$anonfun$2.apply(AskSupport.scala:635) > at > akka.

Flink AskTimeoutException killing the jobs

2020-07-02 Thread M Singh
[org.apache.flink.runtime.rpc.messages.LocalFencedMessage]. A typical reason for `AskTimeoutException` is that the recipient actor didn't send a reply.at akka.pattern.PromiseActorRef$$anonfun$2.apply(AskSupport.scala:635)at akka.pattern.PromiseActorRef$$anonfun$2.apply(AskSupport.scala:635) 

Re: AskTimeoutException

2019-04-24 Thread Alex Soto
I found the issue was a hard-coded timeout value in MiniCluster class, which is used for stand alone execution: public MiniCluster(MiniClusterConfiguration miniClusterConfiguration) { this.miniClusterConfiguration = checkNotNull(miniClusterConfiguration, "config may not

Re: AskTimeoutException

2019-04-24 Thread Alex Soto
Thanks Abdul for the help. So I added this: cfg.setString(AkkaOptions.LOOKUP_TIMEOUT, "2 min"); But I am still I am getting the same error: Caused by: akka.pattern.AskTimeoutException: Ask timed out on [Actor[akka://flink/user/dispatcher62bab021-4a79-4d10-8d45-7a33c493a925#-199361569]

Re: AskTimeoutException

2019-04-12 Thread Abdul Qadeer
Hi Alex, The timeout shown in the exception is due to AkkaOptions.LOOKUP_TIMEOUT On Fri, 12 Apr 2019 at 09:45, Alex Soto wrote: > Hello, > > I am using Flink version 1.7.1. In a unit test, I create a local > environment: > > Configuration cfg = new Configuration(); > cfg.setString(AkkaOptions.

AskTimeoutException

2019-04-12 Thread Alex Soto
Hello, I am using Flink version 1.7.1. In a unit test, I create a local environment: Configuration cfg = new Configuration(); cfg.setString(AkkaOptions.ASK_TIMEOUT, "2 min"); cfg.setString(AkkaOptions.CLIENT_TIMEOUT, "2 min"); Local

Re: AskTimeoutException - Cannot deploy task

2019-03-28 Thread Avi Levi
019 at 11:03 PM Subject: AskTimeoutException - Cannot deploy task To: user Hi, I see the following exceptions, will really appreciate any help on that Thanks Avi This is the first one (out of three) : java.lang.Exception: Cannot deploy task KeyedProcess -> Sink: Unnamed

AskTimeoutException - Cannot deploy task

2019-03-28 Thread Avi Levi
Hi, I see the following exceptions, will really appreciate any help on that Thanks Avi This is the first one (out of three) : java.lang.Exception: Cannot deploy task KeyedProcess -> Sink: Unnamed (3/100) (2c9646634afe1488659da404e92697b0) - TaskManager (container_e03_1553795623823_0001_01_000

Re: AskTimeoutException when canceling job with savepoint on flink 1.6.0

2018-09-05 Thread Gary Yao
flink 1.4.2 we set *akka.client.timeout* to a high value to make sure >> the request did not timeout >> >> However on flink 1.6.0 I get an *AskTimeoutException* and increasing >> *akka.client.timeout* only works if i apply it to the running flink >> process. >> Ap

Re: AskTimeoutException when canceling job with savepoint on flink 1.6.0

2018-09-05 Thread vino yang
; the request did not timeout > > However on flink 1.6.0 I get an *AskTimeoutException* and increasing > *akka.client.timeout* only works if i apply it to the running flink > process. > Applying it to just the flink client does nothing. > > I am reluctant to configure this on

AskTimeoutException when canceling job with savepoint on flink 1.6.0

2018-09-05 Thread jelmer
set *akka.client.timeout* to a high value to make sure the request did not timeout However on flink 1.6.0 I get an *AskTimeoutException* and increasing *akka.client.timeout* only works if i apply it to the running flink process. Applying it to just the flink client does nothing. I am reluctant