Re: GC on TaskManagers stats

2016-02-09 Thread Robert Metzger
Hi Guido, sorry for the late reply. You were collecting the stats every 1 second. Afaik, Flink is internally collecting the stats with a frequency of 5 seconds, so you can either change your or Flink's polling interval (I think its taskmanager.heartbeat-interval) Regarding the details on PS-Scave

Re: GC on taskmanagers

2015-04-01 Thread Maximilian Michels
to > run another job. > So the question is: what am I supposed to do to clear the memory after a > program failed with this OutOfMemoryError. > > Thanks > > > > -- > From: m...@apache.org > Date: Tue, 31 Mar 2015 11:29:30 +0200 &

RE: GC on taskmanagers

2015-03-31 Thread Emmanuel
ce my code generated the OutOfMemoryError, I can't seem to be able to run another job.So the question is: what am I supposed to do to clear the memory after a program failed with this OutOfMemoryError. Thanks From: m...@apache.org Date: Tue, 31 Mar 2015 11:29:30 +0200 Subject: R

Re: GC on taskmanagers

2015-03-31 Thread Maximilian Michels
Hi Emmanuel, In Java, the garbage collector will always run periodically. So remotely executing it won't make any difference. If you want to reuse the existing Java process without restarting it, you have to stop the program code from executing which is causing the OutOfMemoryError. Usually, this