Re: join query parser performance

2023-06-14 Thread Ron Haines
adding more context as to why we are using the 'join'. We have a collection of documents where all documents have a 'group_id' (which is essentially the doc's id). And, some docs have a 'group_member_id' that indicates if that doc belongs to a 'group_id'. For example: doc# group_id. group_me

Re: join query parser performance

2023-06-14 Thread Mikhail Khludnev
Note: images are shredded in the mailing list. Well, if we apply heavy operation (join) it's reasonable that it warm CPU. It should impact number of results. Does it? Overall, the usage seems non-typical: query looks like role based access control (or group membership problem), but has dismax as a

Re: docValues question

2023-06-14 Thread ufuk yılmaz
Raw unanalyzed-untokenized form of the source value is passed to the target —ufuk yilmaz On 14 Jun 2023, at 22:21, Vincenzo D'Amore wrote: >> If the dest field of a copyField action has docValues=true, does that >> require the source field to also have docValues turned on? > > > No, it’s not

Re: docValues question

2023-06-14 Thread Vincenzo D'Amore
> If the dest field of a copyField action has docValues=true, does that > require the source field to also have docValues turned on? No, it’s not required. -- Vincenzo D'Amore

Re: join query parser performance

2023-06-14 Thread Ron Haines
Fyi, I am finally getting back to this. I apologize for the delay. I am going to try using the ‘method=topLevelDV’ option to see if that makes a difference. I will run same tests used below, and follow up with results. As far as more details about this scenario: - Per the ‘user query’.

docValues question

2023-06-14 Thread mtn search
Hello, If the dest field of a copyField action has docValues=true, does that require the source field to also have docValues turned on? Found this config in our historical Solr 6 schema and wondered if it is valid: Thanks, Matt

Re: CustomAnalyzer missing in Lucene 9.4.2

2023-06-14 Thread Charles Sanders
Thanks Mikhail, I "assumed" based on the class path that it would be in lucene-analysis- *custom* which I could not locate. Thanks for pointing this out. This was a huge help. Thanks, Charles Sanders On Wed, Jun 14, 2023 at 11:25 AM Mikhail Khludnev wrote: > Hello Charles, I suppose it reside

Re: Search Request Strategy on Solr Cloud

2023-06-14 Thread Mikhail Khludnev
Right, If healthcheck url is configured to ping handler, one may turn it off from getting traffic before restart via http://.../ping?action=disable . see https://solr.apache.org/docs/9_2_1/core/org/apache/solr/handler/PingRequestHandler.html On Wed, Jun 14, 2023 at 6:09 PM Saksham Gupta wrote:

Re: CustomAnalyzer missing in Lucene 9.4.2

2023-06-14 Thread Mikhail Khludnev
Hello Charles, I suppose it resides in https://mvnrepository.com/artifact/org.apache.lucene/lucene-analysis-common/9.4.2 https://lucene.apache.org/core/9_4_2/analysis/common/org/apache/lucene/analysis/custom/CustomAnalyzer.html On Wed, Jun 14, 2023 at 5:21 PM Charles Sanders wrote: > Hello, > I

Re: Search Request Strategy on Solr Cloud

2023-06-14 Thread Saksham Gupta
Have you configured an URL for health check? Which one? The load balancer checks if the solr port is in use or not. If yes, then it continues sending the search requests. Or you have something like rolling restart/recycle scenarios executed? No, we don't have anything like that configured. @ufuk W

Replication and generation number

2023-06-14 Thread r ohara
Hi Solr folks, We are using solr 8.11 in solrcloud mode with one TLOG and two PULL replica setup. We're having issues not getting the latest updates on our PULL replicas. We have autocommit set to 10 minutes and we're seeing that every once in a while the generation id gets updated, but not the ver

CustomAnalyzer missing in Lucene 9.4.2

2023-06-14 Thread Charles Sanders
Hello, I have an old customer analyzer that was written in Lucene 6. I need to convert it to Lucene 9.4.2. I see in the 9.4.2 documentation that CustomAnalyzer is referenced ( https://lucene.apache.org/core/9_4_2/analysis/common/org/apache/lucene/analysis/custom/CustomAnalyzer.html). However, I a

Re: Search Request Strategy on Solr Cloud

2023-06-14 Thread Mikhail Khludnev
Saksham, can you comment on > if a certain port is up or not and based on that send the request to that node. Have you configured an URL for health check? Which one? > the coordinator node goes down after a request is sent from lb. Do you mean nodes are failing more often than healthcheck occur?