Re: window every n elements instead of time based

2014-10-07 Thread Michael Allman
n <[hidden email]> wrote: >> Hi, >> >> I also have a use for count-based windowing. I'd like to process data >> batches by size as opposed to time. Is this feature on the development >> roadmap? Is there a JIRA ticket for it? >> &g

Re: window every n elements instead of time based

2014-10-07 Thread Jayant Shekhar
based windowing. I'd like to process data >> batches by size as opposed to time. Is this feature on the development >> roadmap? Is there a JIRA ticket for it? >> >> Thank you, >> >> Michael >> >> >> >> -- >> View this mess

Re: window every n elements instead of time based

2014-10-07 Thread Michael Allman
ss data > batches by size as opposed to time. Is this feature on the development > roadmap? Is there a JIRA ticket for it? > > Thank you, > > Michael > > > > -- > View this message in context: > http://apache-spark-user-list.1001560.n3.nabble.com/window-ever

Re: window every n elements instead of time based

2014-10-05 Thread Andrew Ash
ize as opposed to time. Is this feature on the development > roadmap? Is there a JIRA ticket for it? > > Thank you, > > Michael > > > > -- > View this message in context: > http://apache-spark-user-list.1001560.n3.nabble.com/window-every-n-elements-instead-of-time-ba

Re: window every n elements instead of time based

2014-10-03 Thread Michael Allman
e.com/window-every-n-elements-instead-of-time-based-tp2085p15701.html Sent from the Apache Spark User List mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@spark.apache.org For additional commands, e

Re: window every n elements instead of time based

2014-02-27 Thread Tathagata Das
go by window count like moving average. > > > > Thanks > > A > > > > *From:* Tathagata Das [mailto:tathagata.das1...@gmail.com] > *Sent:* February-26-14 2:05 PM > *To:* user@spark.apache.org > *Cc:* u...@spark.incubator.apache.org > *Subject:* Re: window every

RE: window every n elements instead of time based

2014-02-27 Thread Adrian Mocanu
: u...@spark.incubator.apache.org Subject: Re: window every n elements instead of time based Currently, all in-built DStream operation is time-based windowing. We may provide count-based windowing in the future. On Wed, Feb 26, 2014 at 9:34 AM, Adrian Mocanu mailto:amoc...@verticalscope.com

Re: window every n elements instead of time based

2014-02-26 Thread Tathagata Das
Currently, all in-built DStream operation is time-based windowing. We may provide count-based windowing in the future. On Wed, Feb 26, 2014 at 9:34 AM, Adrian Mocanu wrote: > Hi > > Is there a way to do window processing but not based on time but every 6 > items going through the stream? > > >

window every n elements instead of time based

2014-02-26 Thread Adrian Mocanu
Hi Is there a way to do window processing but not based on time but every 6 items going through the stream? Example: Window of size 3 with 1 item "duration" Stream data: 1,2,3,4,5,6,7 [1,2,3]=window 1 [2,3,4]=window 2 [3,4,5]=window 2 etc -Adrian