Re: Enriching events with data from external http resources

2016-08-17 Thread Maciek Próchniak
Hi Ufuk, thanks for info - this is good news :) maciek On 16/08/2016 12:16, Ufuk Celebi wrote: On Mon, Aug 15, 2016 at 8:52 PM, Maciek Próchniak wrote: I know it's not really desired way of using flink and that it would be better to keep data as state inside stream and have

Re: Enriching events with data from external http resources

2016-08-16 Thread Ufuk Celebi
On Mon, Aug 15, 2016 at 8:52 PM, Maciek Próchniak wrote: > I know it's not really desired way of using flink and that it would be > better to keep data as state inside stream and have it updated by some join > operator, but for us it's a bit of overkill - what's more, we have many

Enriching events with data from external http resources

2016-08-15 Thread Maciek Próchniak
Hi, Our data streams do some filtering based on data from external http resources (not maintained by us, they're really fast with redis as storage). So far we did that by just invoking synchronously some http client in map/flatMap operations. It works without errors but it seems somehow