Re: collection alias and solr streaming expression

2016-05-05 Thread sudsport s
Bernstein > http://joelsolr.blogspot.com/ > > On Thu, May 5, 2016 at 2:24 PM, sudsport s wrote: > > > I tried to run solr streaming expression using collection alias , I get > > null pointer expression. after looking at log I see that getSlices > returns > > null.

collection alias and solr streaming expression

2016-05-05 Thread sudsport s
I tried to run solr streaming expression using collection alias , I get null pointer expression. after looking at log I see that getSlices returns null. can someone suggest if it is good idea to add support for collection alias in solr streaming expression? If yes I would like to submit fix and ad

Re: The Streaming API (Solrj.io) : id must have DocValues?

2016-04-26 Thread sudsport s
I see that some work was done to remove stream handler form config. so enabling stream handler is still security issue? https://issues.apache.org/jira/browse/SOLR-8262 On Tue, Apr 26, 2016 at 11:14 AM, sudsport s wrote: > I am using solr 5.3.1 server & solr5.5 on client ( solrj) . I w

Re: The Streaming API (Solrj.io) : id must have DocValues?

2016-04-26 Thread sudsport s
I am using solr 5.3.1 server & solr5.5 on client ( solrj) . I will try with solrj 6.0 On Tue, Apr 26, 2016 at 11:12 AM, Susmit Shukla wrote: > Which solrj version are you using? could you try with solrj 6.0 > > On Tue, Apr 26, 2016 at 10:36 AM, sudsport s wrote: > > &

Re: The Streaming API (Solrj.io) : id must have DocValues?

2016-04-26 Thread sudsport s
I have similar user cases to build probabilistic data-structures while streaming results. I might have to spend some time in exploring query optimization (while doing join decide sort order etc) Please let me know if you have any feedback. On Tue, Apr 26, 2016 at 10:30 AM, sudsport s wrote: > T

Re: The Streaming API (Solrj.io) : id must have DocValues?

2016-04-26 Thread sudsport s
rade to 5.5/6.0 version, it is > > possible to read non-stored fields from docValues index., check out. > > > > > > [1] https://issues.apache.org/jira/browse/SOLR-8220 > > > > On Mon, Apr 25, 2016 at 9:44 AM, sudsport s > wrote: > > > > > Thanks

Re: The Streaming API (Solrj.io) : id must have DocValues?

2016-04-24 Thread sudsport s
s larger, but that size is MMaped rather than > stored on Java's heap. > > Really, the question I'd have to ask though is "why do you care about > the expense?". If you have a functional requirement that has to be > served by returning the id via the /export handler, yo

The Streaming API (Solrj.io) : id must have DocValues?

2016-04-24 Thread sudsport s
I was trying to use Streaming for reading basic tuple stream. I am using sort by id asc , I am getting following exception I am using export search handler as per https://cwiki.apache.org/confluence/display/solr/Exporting+Result+Sets null:java.io.IOException: id must have DocValues to use this fe

JSON facet raw HLL as result

2016-04-12 Thread sudsport s
is it possible to get raw HLL object as result of json facet instead of getting cardinality? I tried to build custom json facet to return raw value as external Jar but attempt was unsuccessful as JSON facet has some classes with default scope and I get IllegalAccessException (RunTimeException) if

Re: using solr AnalyticsQuery API vs facet API

2016-04-08 Thread sudsport s
bump! On Wed, Apr 6, 2016 at 3:25 PM, sudsport s wrote: > Adding Yonik, > > I almost implemented custom aggregate function using new facet API but > later on got runtime exceptions as "FacetContext" is not public. so looks > like Facet api components can't be crea

Re: using solr AnalyticsQuery API vs facet API

2016-04-06 Thread sudsport s
I want. Yonik can you help me figure about differences between Solr analytics API vs JSON Facet API? On Fri, Mar 18, 2016 at 8:52 AM, sudsport s wrote: > Thanks Joel for responding. > but I am still not sure when to use Solr analytics API i vs JSON facet API > (What is differenc

Re: using solr AnalyticsQuery API vs facet API

2016-03-19 Thread sudsport s
Thanks Joel for responding. but I am still not sure when to use Solr analytics API i vs JSON facet API (What is difference between ValueSource vs PostFilter) I know that ValueSource is useful to implement functions. On Wed, Mar 16, 2016 at 9:49 AM, sudsport s wrote: > Hi , > > I am

Re: how to update billions of docs

2016-03-19 Thread sudsport s
I think there are no inplace updates in solr , that means updates behaves like inserts and marking old version deleted. so behaviors should be same as indexing billions of docs. On Wed, Mar 16, 2016 at 3:52 PM, Mohsin Beg Beg wrote: > Hi, > > I have a requirement to replace a value of a field in

using solr AnalyticsQuery API vs facet API

2016-03-18 Thread sudsport s
Hi , I am planning to write custom aggregator in solr which will use some probabilistic data structures per shard to accumate results and then after shard merging results will be sent to user as integer. I explored 2 options to do this 1. Solr analytics API https://cwiki.apache.org/confluence/di