Re: kafka 0.8 release schedule?

2013-04-03 Thread Ryan LeCompte
A 2.10 version would be awesome! Please please :-) On Wed, Apr 3, 2013 at 4:02 PM, Soby Chacko wrote: > Hello, > > I am sure this question has been asked before. But, can someone tell me the > tentative release schedule for Kafka 0.8? And also, when its released, is > it going to be based on Sc

Re: Non-blocking Kafka stream iterators

2013-01-22 Thread Ryan LeCompte
> > > On Mon, Jan 21, 2013 at 8:05 AM, Jun Rao wrote: > > > > > > > > > No, but you can implement it in your application. > > > > > > > > > > Thanks, > > > > > > > > > > Jun > > > > > > > >

Re: Non-blocking Kafka stream iterators

2013-01-20 Thread Ryan LeCompte
Perfect. Thanks Jun! Ryan On Sun, Jan 20, 2013 at 10:16 PM, Jun Rao wrote: > Yes, see consumer.timeout.ms in http://kafka.apache.org/configuration.html > > Thanks, > > Jun > > On Sun, Jan 20, 2013 at 7:14 PM, Ryan LeCompte wrote: > > > Hello all, > &g

Non-blocking Kafka stream iterators

2013-01-20 Thread Ryan LeCompte
Hello all, Does Kafka still only support blocking stream iterstors? It would be great to pass a timeout or have a poll() operation for fetching items. Right now I'm always blocking in this call: for (m <- stream) ... Thanks! Ryan