Re: Random access to small global state

2016-07-14 Thread Robert Metzger
Hi, For Ignite, Flink has a Sink, which is a one-directional thing. I think that Sebastian needs a bi-directional connection. An in-memory KV store like redis or memcache is probably the best option for such a use case (it reminds me a bit of the Yahoo streaming benchmark [1]). [1] https://yahooe

Re: Random access to small global state

2016-07-09 Thread Suneel Marthi
U could use ignite too, I believe they have a plugin for flink streaming. Sent from my iPhone > On Jul 9, 2016, at 8:05 AM, Sebastian wrote: > > Hi, > > I'm planning to work on a streaming recommender in Flink, and one problem > that I have is that the algorithm needs random access to a small

Random access to small global state

2016-07-09 Thread Sebastian
Hi, I'm planning to work on a streaming recommender in Flink, and one problem that I have is that the algorithm needs random access to a small global state (say a million counts). It should be ok if there is some inconsistency in the state (e.g., delay in seeing updates). Does anyone here ha