Re: Solr Clustering Issue

2015-07-24 Thread Joseph Obernberger
Thank you Upayavira and Shawn. Yes - the query works correctly using the standard select. I have a workaround where I simply specify the fields I want to search in each part of the query and do not specify a df. Just an FYI in case someone else runs into this. -Joe On 7/23/2015 10:51 AM, S

Re: Solr Clustering Issue

2015-07-23 Thread Shawn Heisey
On 7/23/2015 7:51 AM, Joseph Obernberger wrote: > Hi Upayavira - the URL was: > > http://server1:9100/solr/MYCOL1/clustering?q=Collection:(COLLECT1008+OR+COLLECT2587)+AND+(amazon+AND+soap)&wt=json&indent=true&clustering=true&rows=1&df=FULL_DOCUMENT&debugQuery=true > > > Here is the relevant part

Re: Solr Clustering Issue

2015-07-23 Thread Upayavira
I've seen something like this on another system - where the OR is consumed as a query term rather than an operator. Remember that Edismax will use the Lucene query parser (which supports OR, etc) unless there is an exception, and defer to dismax if there is a syntax error. What I'd suggest here i

Re: Solr Clustering Issue

2015-07-23 Thread Joseph Obernberger
Hi Upayavira - the URL was: http://server1:9100/solr/MYCOL1/clustering?q=Collection:(COLLECT1008+OR+COLLECT2587)+AND+(amazon+AND+soap)&wt=json&indent=true&clustering=true&rows=1&df=FULL_DOCUMENT&debugQuery=true Here is the relevant part of the response - notice that the default field (FULL_DOCU

Re: Solr Clustering Issue

2015-07-22 Thread Upayavira
I'd be curious to see the parsed query that you get when adding debugQuery=true to the URL. I bet that the clustering component is extracting terms from the parsed query, and perhaps each of those queries is parsed in some way differently? Upayavira On Wed, Jul 22, 2015, at 08:29 PM, Joseph Obern

Re: Solr Clustering Issue

2015-07-22 Thread Joseph Obernberger
Upon further investigation, it looks like it is either ignoring the default field, or when the default field is specified the rest of the query is ignored. Example: q=Field1:(term1 OR term2) AND (item1 OR item2)&df=Field2 that does not cluster correctly, but this does: q=Field1:(term1 OR term2)

Re: Solr Clustering

2014-03-10 Thread Alessandro Benedetti
loader one month ago). > > * I will have tens of thousands of new documents every day and overall > base of several millions. > > I'm reading "Mahout in action" now. But maybe you can point me to what i > need. > --- Исходное сообщение --- > От кого: "Chandan Ta

Re: Solr Clustering

2012-09-17 Thread Denis Kuzmenok
От кого: "Chandan Tamrakar" Кому: solr-user@lucene.apache.org Дата: 4 сентября 2012, 12:30:56 Тема: Re: Solr Clustering > yes there is a solr component if you want to cluster solr documents , check the following linkhttp://wiki.apache.org/solr/ClusteringComponent Carrot2 might be good if yo

Re: Solr Clustering

2012-09-04 Thread Chandan Tamrakar
yes there is a solr component if you want to cluster solr documents , check the following link http://wiki.apache.org/solr/ClusteringComponent Carrot2 might be good if you want to cluster few thousands of documents , for example when user search solr , just cluster the search results Mahout is m

Re: Solr Clustering For Multiple Pages

2011-07-01 Thread Stanislaw Osinski
> > I am asking about the filter after clustering . Faceting is based on the > single field so,if we need to filter we can search in related field . But > in clustering it is created by multiple field then how can we create a > filter for that. > > Example > > after clusetring you get the foll

Re: Solr Clustering For Multiple Pages

2011-07-01 Thread nilay....@gmail.com
Hi I am asking about the filter after clustering . Faceting is based on the single field so,if we need to filter we can search in related field . But in clustering it is created by multiple field then how can we create a filter for that. Example after clusetring you get the following

Re: Solr Clustering For Multiple Pages

2011-06-22 Thread Stanislaw Osinski
I don't quite follow, I must admit. Maybe it's faceting you're after? http://wiki.apache.org/solr/SolrFacetingOverview Staszek On Wed, Jun 22, 2011 at 08:40, nilay@gmail.com wrote: > Can you please tell me how can i apply filter in cluster data in Solr ? > > Currently i storing docid and

Re: Solr Clustering For Multiple Pages

2011-06-21 Thread nilay....@gmail.com
Can you please tell me how can i apply filter in cluster data in Solr ? Currently i storing docid and topic name in Map and get the ids by topic from Map and then pass into solr separating by OR condition Is there any other way to do this - Regards Nilay Tiwari -- View this message

Re: Solr Clustering For Multiple Pages

2011-06-21 Thread nilay....@gmail.com
Thanks Alot . I was thinking i am not doing in correct way . - Regards Nilay Tiwari -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Clustering-For-Multiple-Pages-tp3085507p3094379.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Clustering For Multiple Pages

2011-06-21 Thread nilay....@gmail.com
Hi thanks Alot, can you please help me how can i implement the filter of topic cluster like Model(10) when i will click on model then i need to get 10 docs . Regards Nilay Tiwari On Wed, Jun 22, 2011 at 1:14 AM, Stanislaw Osinski-4 [via Lucene] < ml-node+3092594-1426669115-405...@n3.nabble.c

Re: Solr Clustering For Multiple Pages

2011-06-21 Thread Stanislaw Osinski
Hi, Currently, only the clustering of search results is implemented in Solr, clustering of the whole index is not possible out of the box. In other words, clustering applies only to the records you fetch during searching. For example, if you set rows=10, only the 10 returned documents will be clus

Re: SOLR clustering ant code not compiling

2010-02-23 Thread Koji Sekiguchi
Mark Fletcher wrote: Hi Koji, Thank you so much for the reply. I am not much familiar with the open source "trunk". So I downloaded solr1.4 from the following location http://www.apache.org/dyn/closer.cgi/lucene/solr/ On the browser I can see this err:- ---

Re: SOLR clustering ant code not compiling

2010-02-23 Thread Mark Fletcher
Hi Koji, Thank you so much for the reply. I am not much familiar with the open source "trunk". So I downloaded solr1.4 from the following location http://www.apache.org/dyn/closer.cgi/lucene/solr/ On the browser I can see this err:- - o

Re: SOLR clustering ant code not compiling

2010-02-23 Thread Koji Sekiguchi
Mark Fletcher wrote: Hi, I downloaded the latest version of SOLR. From the contrib/clustering directory ran *ant get-libraries*. It is not building!. I've just tried ant get-libraries under contrib/clustering without any problems. I used trunk. What was your error message? Finally I manua