[jira] [Closed] (APEXMALHAR-2453) Add sort Accumulation for Windowed operator

2017-11-11 Thread Ananth (JIRA)
[ https://issues.apache.org/jira/browse/APEXMALHAR-2453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ananth closed APEXMALHAR-2453. -- > Add sort Accumulation for Windowed opera

[jira] [Commented] (APEXMALHAR-2453) Add sort Accumulation for Windowed operator

2017-03-29 Thread ASF GitHub Bot (JIRA)
osed the pull request at: https://github.com/apache/apex-malhar/pull/587 > Add sort Accumulation for Windowed operator > --- > > Key: APEXMALHAR-2453 > URL: https://issues.apache.org/jira/bro

[jira] [Resolved] (APEXMALHAR-2453) Add sort Accumulation for Windowed operator

2017-03-29 Thread Chinmay Kolhatkar (JIRA)
[ https://issues.apache.org/jira/browse/APEXMALHAR-2453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chinmay Kolhatkar resolved APEXMALHAR-2453. --- Resolution: Done Fix Version/s: 3.8.0 > Add sort Accumulation

[GitHub] apex-malhar pull request #587: APEXMALHAR-2453 Sort Accumulation for Windowe...

2017-03-29 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/apex-malhar/pull/587 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

[jira] [Updated] (APEXMALHAR-2453) Add sort Accumulation for Windowed operator

2017-03-28 Thread Ajay Gupta (JIRA)
event window. To add support for sort, we need to add an accumulation. The accumulation will compare the input stream of tuples and output a sorted list at end-window watermark/trigger. The accumulation will support both ascending and descending (reverse) sort. > Add sort Accumulation for Windo

[jira] [Updated] (APEXMALHAR-2453) Add sort Accumulation for Windowed operator

2017-03-28 Thread Chinmay Kolhatkar (JIRA)
[ https://issues.apache.org/jira/browse/APEXMALHAR-2453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chinmay Kolhatkar updated APEXMALHAR-2453: -- Summary: Add sort Accumulation for Windowed operator (was: Sort

[jira] [Updated] (APEXMALHAR-2453) Sort Accumulation for Windowed operator

2017-03-28 Thread Chinmay Kolhatkar (JIRA)
[ https://issues.apache.org/jira/browse/APEXMALHAR-2453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chinmay Kolhatkar updated APEXMALHAR-2453: -- Issue Type: New Feature (was: Task) > Sort Accumulation for Windo

Re: [GitHub] apex-malhar pull request #587: APEXMALHAR-2453 Sort Accumulation for Windowe...

2017-03-21 Thread Ganelin, Ilya
5.582.7457 (cell) On 3/21/17, 9:36 AM, "ajaygit158" wrote: GitHub user ajaygit158 opened a pull request: https://github.com/apache/apex-malhar/pull/587 APEXMALHAR-2453 Sort Accumulation fo

Re: [GitHub] apex-malhar pull request #587: APEXMALHAR-2453 Sort Accumulation for Windowe...

2017-03-21 Thread Herger, Brendan
r/pull/587 APEXMALHAR-2453 Sort Accumulation for Windowed operators You can merge this pull request into a Git repository by running: $ git pull https://github.com/ajaygit158/apex-malhar APEXMALHAR-2453 Alternatively you can review and apply these changes as th

Re: [jira] [Commented] (APEXMALHAR-2453) Sort Accumulation for Windowed operator

2017-03-21 Thread Herger, Brendan
alhar/pull/587 APEXMALHAR-2453 Sort Accumulation for Windowed operators You can merge this pull request into a Git repository by running: $ git pull https://github.com/ajaygit158/apex-malhar APEXMALHAR-2453 Alternatively you can review and apply these

[jira] [Assigned] (APEXMALHAR-2453) Sort Accumulation for Windowed operator

2017-03-21 Thread Ajay Gupta (JIRA)
[ https://issues.apache.org/jira/browse/APEXMALHAR-2453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ajay Gupta reassigned APEXMALHAR-2453: -- Assignee: Ajay Gupta > Sort Accumulation for Windowed opera

[GitHub] apex-malhar pull request #587: APEXMALHAR-2453 Sort Accumulation for Windowe...

2017-03-21 Thread ajaygit158
GitHub user ajaygit158 opened a pull request: https://github.com/apache/apex-malhar/pull/587 APEXMALHAR-2453 Sort Accumulation for Windowed operators You can merge this pull request into a Git repository by running: $ git pull https://github.com/ajaygit158/apex-malhar

[jira] [Commented] (APEXMALHAR-2453) Sort Accumulation for Windowed operator

2017-03-21 Thread ASF GitHub Bot (JIRA)
t158 opened a pull request: https://github.com/apache/apex-malhar/pull/587 APEXMALHAR-2453 Sort Accumulation for Windowed operators You can merge this pull request into a Git repository by running: $ git pull https://github.com/ajaygit158/apex-malhar APEXMALHAR-2453 Alternatively

Re: Sort Accumulation

2017-03-16 Thread AJAY GUPTA
Hi I am currently going ahead with the implementation of Sort Accumulation using List as mentioned in previous mail. Sorted insertion of elements will be ensured via binary search. Ajay On Wed, Mar 15, 2017 at 4:49 PM, AJAY GUPTA wrote: > Hi Bright, > > Its true that with t

Re: Sort Accumulation

2017-03-15 Thread AJAY GUPTA
will lead to an O(n^2) complexity. > > >> > Since we have to sort all elements, we can do it in a single sort > call > > >> in > > >> > getOutput(). > > >> > > > >> > > > >> > On Wed, Mar 8, 2017 at 10:09 PM, Thomas Weise &g

Re: Sort Accumulation

2017-03-14 Thread Bright Chen
we can do it in a single sort call > >> in > >> > getOutput(). > >> > > >> > > >> > On Wed, Mar 8, 2017 at 10:09 PM, Thomas Weise wrote: > >> > > >> > > Look at the existing topN accumulation. It should be a >

Re: Sort Accumulation

2017-03-13 Thread AJAY GUPTA
8, 2017 at 10:09 PM, Thomas Weise wrote: >> > >> > > Look at the existing topN accumulation. It should be a generalization, >> > > where you don't have a limit. >> > > >> > > >> > > On Wed, Mar 8, 2017 at 8:05 AM, AJAY GUPTA

Re: Sort Accumulation

2017-03-08 Thread AJAY GUPTA
> > > > > Look at the existing topN accumulation. It should be a generalization, > > > where you don't have a limit. > > > > > > > > > On Wed, Mar 8, 2017 at 8:05 AM, AJAY GUPTA > wrote: > > > > > > > Hi, > >

Re: Sort Accumulation

2017-03-08 Thread Bright Chen
lization, > > where you don't have a limit. > > > > > > On Wed, Mar 8, 2017 at 8:05 AM, AJAY GUPTA wrote: > > > > > Hi, > > > > > > I would like to propose the Sort Accumulation. The accumulation will be > > > responsible for so

Re: Sort Accumulation

2017-03-08 Thread AJAY GUPTA
the existing topN accumulation. It should be a generalization, > where you don't have a limit. > > > On Wed, Mar 8, 2017 at 8:05 AM, AJAY GUPTA wrote: > > > Hi, > > > > I would like to propose the Sort Accumulation. The accumulation will be > > res

Re: Sort Accumulation

2017-03-08 Thread Thomas Weise
Look at the existing topN accumulation. It should be a generalization, where you don't have a limit. On Wed, Mar 8, 2017 at 8:05 AM, AJAY GUPTA wrote: > Hi, > > I would like to propose the Sort Accumulation. The accumulation will be > responsible for sorting the input

Sort Accumulation

2017-03-08 Thread AJAY GUPTA
Hi, I would like to propose the Sort Accumulation. The accumulation will be responsible for sorting the input POJO stream. The accumulation will require a comparator to compare and sort the input tuples. Another boolean parameter "sortDesc" will be used to decide sorting order. Let me