You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2017/05/01 16:15:04 UTC

[jira] [Commented] (SOLR-10566) Add timeseries Streaming Expression

    [ https://issues.apache.org/jira/browse/SOLR-10566?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15991011#comment-15991011 ] 

ASF subversion and git services commented on SOLR-10566:
--------------------------------------------------------

Commit 0a2286c5f26d77f1bdf64e2c3843c7505ff6c356 in lucene-solr's branch refs/heads/master from [~joel.bernstein]
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=0a2286c ]

SOLR-10566: Fix error handling


> Add timeseries Streaming Expression
> -----------------------------------
>
>                 Key: SOLR-10566
>                 URL: https://issues.apache.org/jira/browse/SOLR-10566
>             Project: Solr
>          Issue Type: New Feature
>      Security Level: Public(Default Security Level. Issues are Public) 
>            Reporter: Joel Bernstein
>         Attachments: SOLR-10566.patch, SOLR-10566.patch
>
>
> This ticket is to add specific time series support to streaming expressions. Under the covers the timeseries expression will use the json facet API. 
> sample syntax:
> {code}
> timeseries(collection, 
>            q="*:*", 
>            field="rectime_dt",
>            start = "2011-04-01T01:00:00.000Z",
> 	   end = "2016-04-01T01:00:00.000Z",
> 	   gap = "+1MONTH",
>            count(*),
>            sum(price))
> {code}
> This goes nicely with SOLR-10559. The idea is to support expressions that cross-correlate and regress time series data.
> {code}
> let(cell(timeseriesA, timeseries(...)), 
>     cell(timeSeriesB, timeseries(...)), 
>     list(cell(a, get(timeseriesA)),
>          cell(b, get(timeseriesB)),
>          cell(stats, regres(col(timeseriesA, count(*)), col(timeseriesB, count(*))))))
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org