Re: Solr multi word search across multiple fields with mm

2020-07-12 Thread Venu
After some research came across below article 1. edismax-and-multiterm-synonyms-oddities/ . 2. apache mail archive

Solr multi word search across multiple fields with mm

2020-07-08 Thread Venu
Search on words spanning across different fields using edismax query parser with minimum match(mm) and sow=false generates different queries when a field undergoes different query-time analyses(like multi-word synonyms, stop words, etc) Assuming I have 2 documents where brand, description_synonyms

Solr multi word search across multiple fields with mm

2020-07-07 Thread Venu
Hi We observed that the multi-word queries spanned across multiple fields with mm create a problem. Any help would be appreciated. Current Problem: Search on words spanning across different fields with minimum match(mm) and sow=false generates field centric query with per field mm rather than ter

Normalized score

2020-05-19 Thread Venu
Hi Is it possible to normalize the per field score before applying the boosts? let say 2 documents match my search criteria on the query fields *title* and *description* using Dismax Parser with individual boosts. q=cookie&qf = text^2 description^1 let's say below are the TF-IDF scores for the d

Search on Nested Documents

2020-04-26 Thread Venu
Hi I have gone through https://lucene.apache.org/solr/guide/8_5/searching-nested-documents.html and examples suggest to search on a field either on parent or child based on parsers. Is there a way to search on the combined text of parent and child documents? Assume below is the document I am inde

Re: Solr facet order same as result set

2020-04-20 Thread Venu
Probably I haven't framed my question properly. Consider the schema with the fields - id, sku, fc_id, group_id The same SKU can be part of multiple documents with different fc_id and group_id. For a given search query, multiple documents having the same SKU will be returned. Is there any way I ca

Solr facet order same as result set

2020-04-20 Thread Venu
Hi For a given query and sort order, Solr returns the results(ordered based on score and sort order) set along with facets(ordered in descending order of buckets counts) Is there any way to get the facets also in the same order as results/docs? I tried with json facet, but I am not able to make it

Re: Solr CPU spiking up on bulk indexing

2019-06-18 Thread Venu
Thanks Erick. I see the above pattern only at the time of commit. I have many fields (like around 250 fields out of which around 100 fields are dynamic fields and around 3 n-gram fields and text fields, while many of them are stored fields along with indexed fields), will a merge take a lot of t

Solr CPU spiking up on bulk indexing

2019-06-15 Thread Venu
Hi While doing a batch indexing, Solr CPU is spiking regularly. I am doing the auto-commit for every 5 minutes. Please find the image below On stopping the indexing, the CPU is coming to the normal state (around 20%). In the image a

Solr CPU spiking up on bulk indexing

2019-06-15 Thread Venu
Hi While doing a batch indexing, Solr CPU is spiking regularly. I am doing the auto-commit for every 5 minutes. Please find the image below On stopping the indexing, the CPU is coming to the normal state (around 20%). In the image a

Re: Parameter Dereferencing with function queries in solr json facet

2018-12-09 Thread Venu
Thanks Mikhail -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Parameter Dereferencing with function queries in solr json facet

2018-12-08 Thread Venu
I am using solr6.6. I am trying to use parameter Dereferencing for json facets. There can be multiple prices for all the documents(assume sp, price1, price2, price3, price4 are the prices for all the documents). Based on the query, I have to fetch the minimum value among the combination of those

Re: Solr Design question on spatial search

2012-03-02 Thread Venu Gmail Dev
ch is that if a new retail store or a >>>> city is added then I would have to re-index all the data again. Does this answers the problem that you posed ? Thanks, Venu. On Mar 2, 2012, at 9:52 PM, Erick Erickson wrote: > But again, that doesn't answer the problem I posed. Wher

Re: Solr Design question on spatial search

2012-03-02 Thread Venu Dev
en it should be also returned when you search for San. I can restrict the queries to a country. Thanks, ~Venu On Mar 2, 2012, at 5:57 AM, Erick Erickson wrote: > I don't see how this works, since your search for San could also return > San Marino, Italy. Would you then return all reta

Re: Solr Design question on spatial search

2012-03-01 Thread Venu Gmail Dev
mention: http://wiki.apache.org/solr/SpatialSearch > > On Wed, Feb 29, 2012 at 10:54 PM, Venu Shankar > wrote: > >> Hello, >> >> I have a design question for Solr. >> >> I work for an enterprise which has a lot of retail stores (approx. 20K). >> These ret

Solr Design question on spatial search

2012-02-29 Thread Venu Shankar
e how do I ensure that the cities returned in a search result have a nearby retail store. Any suggestions ? Thanks, Venu,

Re: ExtractingRequestHandler Question

2009-05-10 Thread Venu Mittal
arching on is a text field and has following defination in my solr config. Thanks in advance ! Venu

Re: ExtractingRequestHandler Question

2009-04-06 Thread Venu Mittal
is not helping much either. Anyways I will explore and see if I can come up with anything better (may be a separate index for rich text docs). Thanks, Venu From: Jacob Singh To: solr-user@lucene.apache.org Sent: Saturday, April 4, 2009 9:59:13 PM Subject: Re

ExtractingRequestHandler Question

2009-04-03 Thread Venu Mittal
Hi, I am using ExtractingRequestHandler to index rich text documents. The way I am doing it is I get some data related to the document from database and then post an xml (containing only this data ) to solr. Then I make another call to solr, which sends the actual document to be indexed. But

Re: Date Search with q query parameter

2009-03-12 Thread Venu Mittal
Is your final query in this format ? col1:[2009-01-01T00:00:00Z+TO+2009-01-01T23:59:59Z] From: dabboo To: solr-user@lucene.apache.org Sent: Thursday, March 12, 2009 12:27:48 AM Subject: Date Search with q query parameter Hi, I am facing an issue with the dat

Highlighting the searched term in resultset

2009-03-12 Thread Venu Mittal
I was wondering if there is any way of highlighting the searched term in the resultset directly instead of having it as a separate "lst" element. Doing it through xsl transformation would be one way. Has anybody implemented any other better solution ? e.g iPhone iphone sell buy/str> 20

Re: How to search the database tables using solr.

2009-03-04 Thread Venu Mittal
Does anybody has any stats to share on how much time does DataImportHandler takes to index a given set of data ? I am currently indexing 18 millions rows in 1.5 - 2 hours by sending xmls to solr. From: Shalin Shekhar Mangar To: solr-user@lucene.apache.org; c

Re: SOLR newbie question: How to filter the results based on my Unique Key

2009-02-28 Thread Venu Mittal
Ok so I tried out XSLT transformation on the resulting xml and I must say that I am very impressed with the results. I will do some more load testing tomorrow and finalize this solution. Thanks everyone. From: Venu Mittal To: solr-user@lucene.apache.org

Re: SOLR newbie question: How to filter the results based on my Unique Key

2009-02-28 Thread Venu Mittal
y to implement and stable, just make sure you use the latest patch. -- Steve On Feb 28, 2009, at 5:45 PM, Venu Mittal wrote: > Hi List, > > Is it possible to filter out the duplicate results using a particular field > in the document. > e.g. > > > 1 > 123 > a...

SOLR newbie question: How to filter the results based on my Unique Key

2009-02-28 Thread Venu Mittal
Hi List, Is it possible to filter out the duplicate results using a particular field in the document. e.g. 1 123 a...@b.com Now if I search for email = a...@b.com I get 2 search results but I want to send just one record cause my cust_id is same. Is it possible or do I need to handle i