unsubscribe

2020-07-29 Thread Maatary Okouya

Re: [External] Re: From Kafka Stream to Flink

2020-03-28 Thread Maatary Okouya
the >> status? Thanks for your amazing work! >> >> >> >> *De: *Fabian Hueske >> *Fecha: *viernes, 16 de agosto de 2019, 9:30 >> *Para: *"Casado Tejedor, Rubén" >> *CC: *Maatary Okouya , miki haiat < >> miko5...@gmail.com>

Re: From Kafka Stream to Flink

2019-08-06 Thread Maatary Okouya
Fabian, ultimately, i just want to perform a join on the last values for each keys. On Tue, Aug 6, 2019 at 8:07 PM Maatary Okouya wrote: > Fabian, > > could you please clarify the following statement: > > However joining an append-only table with this view without adding

Re: From Kafka Stream to Flink

2019-08-06 Thread Maatary Okouya
depends on the semantics of the join and query that you need, how much state the query will need to maintain. I am not sure to understand the problem. If i have to append-only table and perform some join on it, what's the issue ? On Tue, Aug 6, 2019 at 8:03 PM Maatary Okouya wrote: > Thank

Re: From Kafka Stream to Flink

2019-07-23 Thread Maatary Okouya
21, 2019 at 8:21 AM miki haiat wrote: > Can you elaborate more about your use case . > > > On Sat, Jul 20, 2019 at 1:04 AM Maatary Okouya > wrote: > >> Hi, >> >> I am a user of Kafka Stream so far. However, because i have been face >> with several l

From Kafka Stream to Flink

2019-07-19 Thread Maatary Okouya
Hi, I am a user of Kafka Stream so far. However, because i have been face with several limitation in particular in performing Join on KTable. I was wondering what is the appraoch in Flink to achieve (1) the concept of KTable, i.e. a Table that represent a changeLog, i.e. only the latest version

Re: Non blocking operation in Apache flink

2016-05-25 Thread Maatary Okouya
synchronized (checkpointLock) { > ctx.collect(data); > } > } > }); > } > } > > @Override > public void cancel() { > running = false; > } > } > > I hope that helps. > > -Aljoscha > > O

Re: Non blocking operation in Apache flink

2016-05-25 Thread Maatary Okouya
hole plan of operations before executing them. > > Cheers, > Aljoscha > > On Tue, 24 May 2016 at 20:43 Maatary Okouya <maatarioko...@gmail.com> > wrote: > >> I'm looking for a way to avoid thread starvation in my tasks, by >> returning future but i don't see how

Re: Non blocking operation in Apache flink

2016-05-25 Thread Maatary Okouya
Flink this is not necessary because you can specify > a whole plan of operations before executing them. > > Cheers, > Aljoscha > > On Tue, 24 May 2016 at 20:43 Maatary Okouya <maatarioko...@gmail.com> > wrote: > >> I'm looking for a way to avoid thread sta

Non blocking operation in Apache flink

2016-05-24 Thread Maatary Okouya
I'm looking for a way to avoid thread starvation in my tasks, by returning future but i don't see how is that possible. Hence i would like to know, how flink handle the case where in your job you have to perform network calls (I use akka http or spray) or any IO operation and use the result of