ArrayIndexoutofBoundsException.

2020-04-24 Thread Zahid Rahman
@Stephan Ewen. That was the other response I gave. I have thought about it really hard as per your request. Dr. NOUREDDIN SADAWI Shows how to handle that exception. https://youtu.be/c7rsWQvpw4k @ 7:06.

Re: An ArrayIndexOutOfBoundsException after a few message with Flink 1.8.1

2019-08-06 Thread Nicolas Lalevée
>> From:Nicolas Lalevée >> Send Time:2019 Aug. 5 (Mon.) 22:58 >> To:user >> Subject:An ArrayIndexOutOfBoundsException after a few message with Flink >> 1.8.1 >> >> Hi, >> >> I have got a weird error after a few messages. I

Re: An ArrayIndexOutOfBoundsException after a few message with Flink 1.8.1

2019-08-05 Thread Yun Gao
downstream task). Best, Yun -- From:Nicolas Lalevée Send Time:2019 Aug. 5 (Mon.) 22:58 To:user Subject:An ArrayIndexOutOfBoundsException after a few message with Flink 1.8.1 Hi, I have got a weird error after a few messages. I have

An ArrayIndexOutOfBoundsException after a few message with Flink 1.8.1

2019-08-05 Thread Nicolas Lalevée
Hi, I have got a weird error after a few messages. I have first seen this error on a deployed Flink cluster 1.7.1. Trying to figure it out, I am trying with a local Flink 1.8.1. I still get this ArrayIndexOutOfBoundsException. I don't have a precise scenario to reproduce it, but

Re: ArrayIndexOutOfBoundsException

2018-09-25 Thread Alexander Smirnov
Appreciate your help, Stefan! 👍🏻 On Tue, 25 Sep 2018 at 18:19, Stefan Richter wrote: > You only need to update the flink jars, the job requires no update. I > think you also cannot start from this checkpoint/savepoint after the > upgrade because it seems to be corrupted from the bug. You need to

Re: ArrayIndexOutOfBoundsException

2018-09-25 Thread Stefan Richter
You only need to update the flink jars, the job requires no update. I think you also cannot start from this checkpoint/savepoint after the upgrade because it seems to be corrupted from the bug. You need to us an older point to restart. Best, Stefan > Am 25.09.2018 um 16:53 schrieb Alexander Smi

Re: ArrayIndexOutOfBoundsException

2018-09-25 Thread Alexander Smirnov
Thanks Stefan. is it only Flink runtime should be updated, or the job should be recompiled too? Is there a workaround to start the job without upgrading Flink? Alex On Tue, Sep 25, 2018 at 5:48 PM Stefan Richter wrote: > Hi, > > this problem looks like https://issues.apache.org/jira/browse/FLI

Re: ArrayIndexOutOfBoundsException

2018-09-25 Thread Stefan Richter
Hi, this problem looks like https://issues.apache.org/jira/browse/FLINK-8836 which would also match to your Flink version. I suggest to update to 1.4.3 or higher to avoid the issue in the future. Best, Stefan > Am 25.09.2018 um 16:37 schrieb

ArrayIndexOutOfBoundsException

2018-09-25 Thread Alexander Smirnov
I'm getting an exception on job starting from a savepoint. Why that could happen? Flink 1.4.2 java.lang.IllegalStateException: Could not initialize operator state backend. at org.apache.flink.streaming.api.operators.AbstractStreamOperator.initOperatorState(AbstractStreamOperator.java:301

Re: ArrayIndexOutOfBoundsException when running job from JAR

2015-06-29 Thread Robert Metzger
gt;>>>> Flink with the start-local.sh script. >>>>>> >>>>>> >>>>>> I will try to explain my code a bit. The *Integer[] *array is >>>>>> initialized in the *getVerticesDataSet()* method. >>>>>> &g

Re: ArrayIndexOutOfBoundsException when running job from JAR

2015-06-29 Thread Stephan Ewen
xplain my code a bit. The *Integer[] *array is >>>>> initialized in the *getVerticesDataSet()* method. >>>>> >>>>> * DataSet >> vertices >>>>> = getVerticesDataSet(env);* >>>>> *...* >>>>> *

Re: ArrayIndexOutOfBoundsException when running job from JAR

2015-06-29 Thread Vasiliki Kalavri
> *Graph, NullValue> >>>> intermediateGraph = * >>>> *graph.run(new APSP(srcVertexId, >>>> maxIterations));* >>>> >>>> >>>> In APSP I'm addressing it in the *InitVerticesMapper*, but is now >>

Re: ArrayIndexOutOfBoundsException when running job from JAR

2015-06-29 Thread Robert Metzger
gt;> >>> In APSP I'm addressing it in the *InitVerticesMapper*, but is now >>> suddenly empty. >>> >>> Best, >>> Mihail >>> >>> >>> On 26.06.2015 10:00, Robert Metzger wrote: >>> >>> Hi Mihail, >>&

Re: ArrayIndexOutOfBoundsException when running job from JAR

2015-06-28 Thread Vasiliki Kalavri
t;> Mihail >> >> >> On 26.06.2015 10:00, Robert Metzger wrote: >> >> Hi Mihail, >> >> the NPE has been thrown from >> *graphdistance.APSP$InitVerticesMapper.map(APSP.java:74)*. I guess that >> is code written by you or a library you are usin

Re: ArrayIndexOutOfBoundsException when running job from JAR

2015-06-26 Thread Mihail Vieru
code written by you or a library you are using. Maybe the data you are using on the cluster is different from your local test data? Best, Robert On Thu, Jun 25, 2015 at 7:41 PM, Mihail Vieru mailto:vi...@informatik.hu-berlin.de>> wrote: Hi, I get

Re: ArrayIndexOutOfBoundsException when running job from JAR

2015-06-26 Thread Vasiliki Kalavri
> > the NPE has been thrown from > *graphdistance.APSP$InitVerticesMapper.map(APSP.java:74)*. I guess that > is code written by you or a library you are using. > Maybe the data you are using on the cluster is different from your local > test data? > > Best, > Robert >

Re: ArrayIndexOutOfBoundsException when running job from JAR

2015-06-26 Thread Mihail Vieru
APSP.java:74)/. I guess that is code written by you or a library you are using. Maybe the data you are using on the cluster is different from your local test data? Best, Robert On Thu, Jun 25, 2015 at 7:41 PM, Mihail Vieru mailto:vi...@informatik.hu-berlin.de>> wrote: Hi, I get

Re: ArrayIndexOutOfBoundsException when running job from JAR

2015-06-26 Thread Stephan Ewen
Looks like an exception in one of the Gelly functions. Let's wait for someone from Gelly to jump in... On Thu, Jun 25, 2015 at 7:41 PM, Mihail Vieru wrote: > Hi, > > I get an ArrayIndexOutOfBoundsException when I run my job from a JAR in > the CLI. > This doesn't o

Re: ArrayIndexOutOfBoundsException when running job from JAR

2015-06-26 Thread Robert Metzger
, Mihail Vieru wrote: > Hi, > > I get an ArrayIndexOutOfBoundsException when I run my job from a JAR in > the CLI. > This doesn't occur in the IDE. > > I've build the JAR using the "maven-shade-plugin" and the pom.xml > configuration Robert has provided h

ArrayIndexOutOfBoundsException when running job from JAR

2015-06-25 Thread Mihail Vieru
Hi, I get an ArrayIndexOutOfBoundsException when I run my job from a JAR in the CLI. This doesn't occur in the IDE. I've build the JAR using the "maven-shade-plugin" and the pom.xml configuration Robert has provided here: https://stackoverflow.com/questions/30102523/