running flink job cluster on kubernetes with HA

2018-11-13 Thread aviad
s it enough? thanks, Aviad -- Sent from: http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/

hadoopInputFormat and elasticsearch

2018-10-02 Thread aviad
Hi, I want to write batch job which reads data from *elasticsearch* using *elasticsearch-hadoop* (https://github.com/elastic/elasticsearch-hadoop/) and *hadoopInputFormat* example code (from https://github.com/genged/flink-playground/blob/master/src/main/java/com/mic/flink/FlinkMain.java): ela

Re: RestartStrategies & checkpoints

2017-11-16 Thread aviad
d the restart strategy has not been configured, the fixed-delay strategy is used with Integer.MAX_VALUE restart attempts." but still it is not written literally thanks Aviad -- Sent from: http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/

Re: external checkpoints

2017-11-16 Thread aviad
I have another way to configure externalized checkpoint? thanks Aviad -- Sent from: http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/

external checkpoints

2017-11-15 Thread Aviad Rotem
Hi, I have several jobs which configured for external check-pointing (enableExternalizedCheckpoints) how can I correlate between checkpoint and jobs. for example, if i want to write script which monitor if the job is up or not and if the job is down it will resume the job from the externalized chec

RestartStrategies & checkpoints

2017-11-15 Thread Aviad Rotem
Hi, if my job configured with *setRestartStrategy *and with *enableCheckpointing *(&enableExternalizedCheckpoints). it case of failure and job restart, does it restart with the latest checkpoint or is it restarts without any checkpoint.