facet domain change with blockChildren not working as expected

2023-05-04 Thread Igor Blanco
I have a document with nested documents indexed as this: {     'id':1,     'creation_date':'2023-02-09T07:18:59Z',     'update_date':'2023-05-03T14:37:08Z',     'dictionary':{     'id':'DIC1',     'lang_ids':[     2,     3     ]     },     'contexts':[     ],     'def

Re: facet domain change with blockChildren not working as expected

2023-05-04 Thread Mikhail Khludnev
Hello Igor. I'm not sure parent/child docs are indexed well in this particular case. But I spot one detail in the ref guide ... exclusively matches all parent documents in the collection. Presumably it should be "blockChildren":"id:[0 TO 9]" Beforehand, check that this query matches only parent d

Re: standard tokenizer seemingly splitting on dot

2023-05-04 Thread Mikhail Khludnev
Raised https://github.com/apache/lucene/issues/12264. Let's look at what devs say. On Wed, May 3, 2023 at 6:13 PM Bill Tantzen wrote: > Shawn, > No, email addresses are not preserved -- from the docs: > > >- > >The "@" character is among the set of token-splitting punctuation, so >em

Skip applying boost queries

2023-05-04 Thread Rajani Maski
Hi Solr Users, Is there a feature that tells the query processor to skip applying bq and bf if the number of docs matched is x? Certain queries that match a large set of docs spend 60-70% of total Qtime in applying "bq" and "boost" so the interest is to skip that if the number of docs matches is x

Re: Debug time spent in aggregating the search results

2023-05-04 Thread Rajani Maski
Hi Hoss, Do I need to enable something to retrieve this metric? I tried to query it http://localhost:8983/solr/admin/metrics?wt=json&prefix=QUERY./select.distrib.requestTimes but there is no "distrib" in the response, there are only select QUERY./select.requestTimes and others [image: image.png

Re: facet domain change with blockChildren not working as expected

2023-05-04 Thread Igor Blanco
Hi Mikhail, Thanks for your response. It worked and I think that it put me on the right path but I'm still a bit confused I thought that blockChain allowed me to change the domain to all the children of the main resulting documents and that the "id:DIC*" filter would limit the children in th

Edismax parsing when using pf parameter

2023-05-04 Thread Mónica Marrero
Hi, I have found what I think is an inconsistent behaviour of the query parser when using the pf parameter. I am testing with the techproducts collection in Solr v9.2.1, defType=edismax, pf=text name a) Query= name:george AND (game AND thrones) Result= "parsedquery_toString":"+(+name:george +(+(

becoming a solr specialist

2023-05-04 Thread ufuk yılmaz
Hi all, First of all forgive me if asking this here is inappropriate, but I couldn’t think of a better place where all Solr experts gather. I have been working as the main “solr person” at a project since 2018 where Solr sat at the very core of things. It’s mainly a distributed data (20+TB’s)

Re: Skip applying boost queries

2023-05-04 Thread Alessandro Benedetti
The first thing that comes to my mind is the reranking query capability: https://solr.apache.org/guide/solr/latest/query-guide/query-re-ranking.html I am not fully satisfied by the way the feature manages the final scoring, but I believe it can be helpful in your case! Cheers

Re: becoming a solr specialist

2023-05-04 Thread Dave
Send me a personal email > On May 4, 2023, at 11:23 AM, ufuk yılmaz wrote: > > Hi all, > > First of all forgive me if asking this here is inappropriate, but I couldn’t > think of a better place where all Solr experts gather. > > I have been working as the main “solr person” at a project sinc

Re: Skip applying boost queries

2023-05-04 Thread Rajani Maski
Nice, this should work. Thank you so much, appreciate it. On Thu, May 4, 2023 at 11:41 AM Alessandro Benedetti wrote: > The first thing that comes to my mind is the reranking query capability: > https://solr.apache.org/guide/solr/latest/query-guide/query-re-ranking.html > > I am not fully satisf

Re: facet domain change with blockChildren not working as expected

2023-05-04 Thread Mikhail Khludnev
> Is there a way to reduce the new domain to only the children's that comply to some kind of filter? Sure. You can apply "filter" under "domain" to restrict a certain child type. Check https://solr.apache.org/guide/solr/latest/query-guide/json-faceting-domain-changes.html#adding-domain-filters pl

Re: becoming a solr specialist

2023-05-04 Thread Doug Whitfield
We are hiring Solr folks in India (Pune, specifically) and the US. We need people with a broad skillset, not necessarily someone who has been working with Solr since 2004. I know a bit about the progress of hiring in India, but very little in the US (although I know one name got passed on to th

Re: becoming a solr specialist

2023-05-04 Thread Eric Pugh
Relevance Slack has an active #jobs channel as well. The magic invite link is www.opensourceconnections.com/slack and then add #jobs…. > On May 4, 2023, at 1:25 PM, Doug Whitfield > wrote: > > We are hiring Solr folks in India (Pune, specifi

Vector as LTR Field Value Feature Type

2023-05-04 Thread Rajani Maski
Hi Solr Users, Can the LTR field value feature be a vector field or a field with comma separated numeric values? Is it a supported feature? Instead of querying each field separately, which is adding

Re: standard tokenizer seemingly splitting on dot

2023-05-04 Thread Rahul Goswami
Bill, Do you have a WordDelimiterFilterFactory in the analysis chain (with "*preserveOriginal" *attribute likely set to *0*)? That would split the token on the period downstream in the analysis chain even if StandardTokenizer doesn't. -Rahul On Thu, May 4, 2023 at 6:22 AM Mikhail Khludnev wrote:

Re: standard tokenizer seemingly splitting on dot

2023-05-04 Thread Bill Tantzen
Rahul, No I do not, but note that this behavior has been observed by others and reported as a possible issue. Thank you! ~~Bill On Thu, May 4, 2023 at 1:07 PM Rahul Goswami wrote: > Bill, > Do you have a WordDelimiterFilterFactory in the analysis chain (with > "*preserveOriginal" > *attribute li

Re: Debug time spent in aggregating the search results

2023-05-04 Thread Chris Hostetter
: Do I need to enable something to retrieve this metric? I tried to query it : http://localhost:8983/solr/admin/metrics?wt=json&prefix=QUERY./select.distrib.requestTimes : : but there is no "distrib" in the response, there are only select Hrm what version of solr are you running? Here's

Re: becoming a solr specialist

2023-05-04 Thread Joel Bernstein
I'll ping you on LinkedIn. Joel Bernstein http://joelsolr.blogspot.com/ On Thu, May 4, 2023 at 1:53 PM Eric Pugh wrote: > Relevance Slack has an active #jobs channel as well. The magic invite > link is www.opensourceconnections.com/slack < > http://www.opensourceconnections.com/slack> and t

Re: Edismax parsing when using pf parameter

2023-05-04 Thread Chris Hostetter
I agree this looks like a bug, would you please go ahead and file a jira? It seems like maybe it's an off-by-one error (which is just ... ugh.) $ curl -sS http://localhost:8983/solr/techproducts/select -d 'debug=query' -d 'defType=edismax' -d 'pf=text name' -d 'q=content:(XXX AND YYY AND ZZZ)

Re: Solr logs (hits value) and memory allocation

2023-05-04 Thread Joel Bernstein
It would also depend on the query. For example collapse keeps a Map of groups heads gathered during the query. A large result set and a high cardinality group field would result in more memory usage. Joel Bernstein http://joelsolr.blogspot.com/ On Wed, May 3, 2023 at 3:11 PM Kevin Risden wrot

Re: Debug time spent in aggregating the search results

2023-05-04 Thread Rajani Maski
Solr version* 9.1.1* Query - solr/admin/metrics?nodes=all&wt=json&prefix=QUERY./select.distrib.requestTimes { "responseHeader":{ "status":0, "QTime":7}, "ip:8983_solr":{ "responseHeader":{ "status":0, "QTime":2}, "metrics":{}}, "ip:8983_solr":{ "responseHead

Re: Backing up Solr to a specific path

2023-05-04 Thread Lewis Blackwell
Hi everyone, Is there a way to set the path when backing up my solr core outside the solr directory? I tried updating the solr.xml file with a specific path but it was not recognized. I am using solr 9.0 Thanks, Lewis

Re: facet domain change with blockChildren not working as expected

2023-05-04 Thread Igor Blanco
O great, thanks for the tip. And yes, jejeje, blockChain in SOLR would be great for all that folks that are frenetically searching for their wallet's lost passwords. :P Thanks for your help. El 4/5/23 a las 19:17, Mikhail Khludnev escribió: Is there a way to reduce the new domain to only t

RE: Backing up Solr to a specific path

2023-05-04 Thread DAVID MARTIN NIETO
De: Lewis Blackwell Enviado: viernes, 5 de mayo de 2023 3:55 Para: users@solr.apache.org Asunto: Re: Backing up Solr to a specific path Hi everyone, Is there a way to set the path when backing up my solr core outside the solr directory? I tried updating the solr.