Re: custom sources

2016-05-20 Thread Ufuk Celebi
On Fri, May 20, 2016 at 3:12 PM, Abhishek Singh wrote: > Thanks. I am still in theory/evaluation mode. Will try to code this up to > see if checkpoint will become an issue. I do have a high rate of ingest and > lots of in flight data. Hopefully flink back pressure keeps this nicely > bounded. Sur

Re: custom sources

2016-05-20 Thread Abhishek Singh
Thanks. I am still in theory/evaluation mode. Will try to code this up to see if checkpoint will become an issue. I do have a high rate of ingest and lots of in flight data. Hopefully flink back pressure keeps this nicely bounded. I doubt it will be a problem for me - because even spark is writing

Re: custom sources

2016-05-20 Thread Ufuk Celebi
On Thu, May 19, 2016 at 7:48 PM, Abhishek R. Singh wrote: > There seems to be some relationship between watermarks, triggers and > checkpoint that is someone not being leveraged. Checkpointing is independent of this, yes. Did the state size become a problem for your use case? There are various us

Re: custom sources

2016-05-19 Thread Abhishek R. Singh
s and checkpoint that is someone not being leveraged. -Abhishek- > On May 19, 2016, at 5:48 AM, Till Rohrmann wrote: > > Hi Abhishek, > > you can implement custom sources by implementing the SourceFunction or the > ParallelSourceFunction int

Re: custom sources

2016-05-19 Thread Till Rohrmann
Hi Abhishek, you can implement custom sources by implementing the SourceFunction or the ParallelSourceFunction interface and then calling StreamExecutionEnvironment.addSource. At the moment, it is not possible to control manually or from a source function when to trigger a checkpoint. This is

custom sources

2016-05-17 Thread Abhishek R. Singh
Hi, Can we define custom sources in link? Control the barriers and (thus) checkpoints at good watermark points? -Abhishek-