Solr - example for using percentiles

2017-01-15 Thread Vidal, Gilad
Hi, Can you direct me for Java example using Solr percentiles? The following 3 examples are not seems to be working. search.setParam("facet", true); search.setParam("percentiles", true); search.setParam("percentiles.field", "networkTime"); se

Missing Segment File

2017-01-15 Thread Moenieb Davids
Hi All, How does one resolve the missing segments issue: java.nio.file.NoSuchFileException: /pathxxx/data/index/segments_1bj Seems like it only occurs on large csv imports via DIH === GPAA e-mail Disclaimers and c

Re: Referencing a !key and !stat in facet.pivot

2017-01-15 Thread Chris Hostetter
If i'm understanding your question correctly, what you're looking for is simply... stats.field={!tag=pivot_stats}lastPrice facet.pivot={!key=pivot stats=pivot_stats}buyer,vendor ...there should only ever be one set of "{}" in the facet.pivot, defining the set of local params, and there are 2 p

Re: Error Loading Custom Codec class with Solr Codec Factory. Class cast exception

2017-01-15 Thread Chris Hostetter
: But when I try to load this codec directly via Solrconfig.xml CodecFactory : as below. : : : ...there is a difference between a (lucene layer) Codec. And a (solr layer) CodecFactory. Having the codec code in place (with the necessary SPI metadata files) let's Solr/Lucene *read* indexes

Re: Referencing a !key and !stat in facet.pivot

2017-01-15 Thread John Blythe
Appreciated. Will give it a whirl tomorrow and report back! On Sun, Jan 15, 2017 at 12:36 PM Chris Hostetter wrote: > > > If i'm understanding your question correctly, what you're looking for is > > simply... > > > > stats.field={!tag=pivot_stats}lastPrice > > facet.pivot={!key=pivot stats=pivot

Solr schema design: fitting time-series data

2017-01-15 Thread map reduced
Hi, I am trying to fit the following data in Solr to support flexible queries and would like to get your input on the same. I have data about users say: contentID (assume uuid), platform (eg. website, mobile etc), softwareVersion (eg. sw1.1, sw2.5, ..etc), regionId (eg. us144, uk123, etc..)

Re: Solr schema design: fitting time-series data

2017-01-15 Thread Erick Erickson
bq: I know multivalued fields don't support complex data types Not sure what you're talking about here. mulitValued actually has nothing to do with data types. You can have text fields which are analyzed and produce multiple tokens and are multiValued. You can have primitive types (string, int/lo

SOLR Installation / Configuration related

2017-01-15 Thread Prasanna S. Dhakephalkar
Hi, I have a standalone installation of solr 5.3.1 Recently I have started facing an issue, whenever the Garbage collector kicks in, and at that time if there is a request to solr, Solr (http) responds back with status 0 and the service is not served, it gets served after few seconds.

Re: Solr schema design: fitting time-series data

2017-01-15 Thread map reduced
I may have used wrong terminology, by complex types I meant non-primitive types. Mutlivalued can be conceptualized as a list of values for instance in your example myint = [ 32, 77] etc which you can possibly analyze and query upon. What I was trying to ask is if a complex type can be multi-valued