Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Florin Babes
Hello, First let's call the field you collapse on group_field If group_field has a high cardinality you should make group_field null for those documents that have a unique group_field and set nullPolicy=expand. By doing that solr will use less memory for it's internal maps (so faster gc) and the he

Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Parshant Kumar
Hi florin, I am using below. 1) fq={!collapse field=parentglusrid} 2) expand.rows=4 3) expand=true Size of index is around 100GB. Solr version is 6.5 On Mon, Mar 8, 2021 at 1:46 PM Florin Babes wrote: > Hello, > First let's call the field you collapse on group_field > If group_field has a hig

Re: Unsubscribe me please

2021-03-08 Thread serwah
Please unsubscribe me Thanks On Mon, 8 Mar 2021 at 02:20, Li, Yi wrote: > Please Unsubscribe me > > On 3/7/21, 7:29 PM, "Yuval Dotan" wrote: > > LEARN FAST: This email originated outside of HERE. > Please do not click on links or open attachments unless you recognize > the sender and

Re: Unsubscribe me please

2021-03-08 Thread yave guadaño
Please unsubscribe me En lunes, 8 de marzo de 2021 10:23:43 CET, serwah escribió: Please unsubscribe me Thanks On Mon, 8 Mar 2021 at 02:20, Li, Yi wrote: > Please Unsubscribe me > > On 3/7/21, 7:29 PM, "Yuval Dotan" wrote: > >    LEARN FAST: This email originated outside of HERE.

Re: Unsubscribe me please

2021-03-08 Thread Furkan KAMACI
Hi All, Please send a request to users-unsubscr...@solr.apache.org Let me know if you cannot unsubscribe. Please do not send such emails into the Solr user list. Kind Regards, Furkan KAMACI On Mon, Mar 8, 2021 at 12:30 PM serwah wrote: > Please unsubscribe me > > Thanks > > On Mon, 8 Mar 2021

Re: Test email to migrated list

2021-03-08 Thread Furkan KAMACI
Hi All, Please send a request to users-unsubscr...@solr.apache.org Let me know if you cannot unsubscribe. Please do not send such emails into the Solr user list. Kind Regards, Furkan KAMACI On Mon, Mar 8, 2021 at 4:05 AM Tiong Jeffrey wrote: > Unsubscribe > > Get Outlook for Android

CustomBreakIterator Performance Issues

2021-03-08 Thread df2832368_...@amberoad.de df2832368_...@amberoad.de
Hello, I am currently working on getting a custom BreakIterator for the Unified Highlighter to work, and struggle a bit performance wise. I need a BreakIterator for getting nice highlights of passages. For this I want the start of the highlight to be a sentence-start and the end to be a word-en

Re: CustomBreakIterator Performance Issues

2021-03-08 Thread df2832368_...@amberoad.de df2832368_...@amberoad.de
And of cource the link broke : https://drive.google.com/file/d/1wfZFQD6loTeA9_-eGrdwi9YGtJcNjKli/view?usp=sharing > df2832368_...@amberoad.de df2832368_...@amberoad.de > hat am 08.03.2021 11:05 geschrieben: > > > Hello, > > I am currently working on getting a custom BreakIterator

Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Florin Babes
Your group_field has a high cardinality? Thanks, Florin Babes În lun., 8 mar. 2021 la 10:35, Parshant Kumar a scris: > Hi florin, > > I am using below. > > 1) fq={!collapse field=parentglusrid} > 2) expand.rows=4 > 3) expand=true > > Size of index is around 100GB. > Solr version is 6.5 > > On Mo

Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Parshant Kumar
yes,group_field is having high cardinality. Thanks Parshant Kumar On Mon, Mar 8, 2021 at 4:06 PM Florin Babes wrote: > Your group_field has a high cardinality? > Thanks, > Florin Babes > > În lun., 8 mar. 2021 la 10:35, Parshant Kumar > a scris: > > > Hi florin, > > > > I am using below. > >

unsubscribe-us...@solr.apache.org

2021-03-08 Thread jerome . dupont
unsubscribe-us...@solr.apache.org En raison des directives gouvernementales liées à la situation sanitaire, les expositions restent fermées jusqu'à nouvelle consigne. Les manifestations culturelles ne peuvent pas accueillir de public mais sont en grande partie diffusées en ligne . La bibliothè

Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Florin Babes
We improved the performance of collapse by making the group_field null for the documents that have an unique value for group_field. This might help/ În lun., 8 mar. 2021 la 12:40, Parshant Kumar a scris: > yes,group_field is having high cardinality. > > > Thanks > Parshant Kumar > > On Mon, Mar

Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Gajendra Dadheech
Hey Florin. What was incremental benefit of this optimization of have group field null for unique docs. On Mon, Mar 8, 2021, 4:41 PM Florin Babes wrote: > We improved the performance of collapse by making the group_field null for > the documents that have an unique value for group_field. This mi

Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Parshant Kumar
How can we make group_field null? Using nullPolicy=expand ? On Mon, Mar 8, 2021 at 4:41 PM Florin Babes wrote: > We improved the performance of collapse by making the group_field null for > the documents that have an unique value for group_field. This might help/ > > > În lun., 8 mar. 2021 la 12

Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Florin Babes
@Gajendra Our response time dropped by 36% and our rps increased with 27%. You have to reindex the core and the client should set to null the field if it's unique. În lun., 8 mar. 2021 la 13:18, Parshant Kumar a scris: > How can we make group_field null? Using nullPolicy=expand ? > > On Mon, Ma

Re: Solr backup no longer writes to a UNC path

2021-03-08 Thread Jan Høydahl
Hi, That's right. UNC paths are always disallowed since 8.6. See https://solr.apache.org/guide/8_6/solr-upgrade-notes.html#solr-8-6 and https://github.com/apache/lucene-solr/blob/master/solr/core/src/java/org/apache/solr/core/SolrPaths.java#L64 Solution is to mount the remote server as a drive l

Re: CustomBreakIterator Performance Issues

2021-03-08 Thread David Smiley
The BreakIterator impls in the JDK (and likely IBM ICU) seem slow and can sometimes dominate the performance of this highlighter. I worked on a large search project (which led to the creation of the UnifiedHighlighter) and we used a technique of encoding the breaks directly into the text a-priori.

Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Parshant Kumar
client should set to null the field if it's unique. @florin @Gajendra can you please explain more .I am not clear how to perform this. On Mon, Mar 8, 2021 at 6:09 PM Florin Babes wrote: > @Gajendra Our response time dropped by 36% and our rps increased with 27%. > > You have to reindex the core

RE: Idle timeout expired and Early Client Disconnect errors

2021-03-08 Thread ufuk yılmaz
How do you “register” something like a CloudSolrStream btw? Using Blob Store API? Sent from Mail for Windows 10 From: Susmit Sent: 06 March 2021 23:03 To: users@solr.apache.org Subject: Re: Idle timeout expired and Early Client Disconnect errors better to use solr 8.9 and configure http timeout

High thread count while writing collection

2021-03-08 Thread DAVID MARTIN NIETO
Hello, We have a cluster of solr 8.2 and sometimes when we have a high load of incoming queries about solr and we have to reindex at the same time, the following happens: - One of the nodes or several that make up the cluster of solr sees how its processes are triggered in the order of 1000 unt

Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Gajendra Dadheech
@prashant Florin means to put null for parentglusrid in documents where this field-value is only present in one document [Group has only one document]. and then use nullPolicy to include/expand. On Mon, Mar 8, 2021 at 6:55 PM Parshant Kumar wrote: > client should set to null the field if it's

Re: Test email to migrated list

2021-03-08 Thread Abhishek Sharma
I am still getting the emails from solr group. On Mon, Mar 8, 2021 at 3:10 PM Furkan KAMACI wrote: > Hi All, > > Please send a request to users-unsubscr...@solr.apache.org > > Let me know if you cannot unsubscribe. Please do not send such emails into > the Solr user list. > > Kind Regards, > Fur

Re: Test email to migrated list

2021-03-08 Thread Paweł Gdula
unsubscribe On Mon, 8 Mar 2021 at 17:53, Abhishek Sharma wrote: > I am still getting the emails from solr group. > > On Mon, Mar 8, 2021 at 3:10 PM Furkan KAMACI > wrote: > > > Hi All, > > > > Please send a request to users-unsubscr...@solr.apache.org > > > > Let me know if you cannot unsubscri

zk upconfig does not recognize ZK_HOST style string

2021-03-08 Thread Subhajit Das
Hi There, When I was trying to upload new configset to zookeeper using Solr control script, the -z parameter is not recognizing ZK_HOST style string. Say, I use ,,/solr, then the config is uploaded to directly, instead of /solr znode. Can anyone please help on this matter, if this is how it i

Re: Test email to migrated list

2021-03-08 Thread Furkan KAMACI
Hi All, For whom who cannot unsubscribe via users-unsubscr...@solr.apache.org Please send an email to users-ow...@solr.apache.org instead of writing to the user mail list, so I can help you via manual unsubscribe from the mail list. Kind Regards, Furkan KAMACI On Mon, Mar 8, 2021 at 8:11 PM Paw

solr.CurrencyFieldType not fully replicating it's sub-fields

2021-03-08 Thread Steven Novotny
Hi Everyone, We currently have a Solr 7.7.2 solrcloud setup (been meaning to update, but here we are). Our collections are 2 shards with 2 replicas. I'm not sure how long this has been going on exactly, but we recently added a feature to be able to query on one of the fields of solr.CurrencyFiel

Re: Increase in response time in case of collapse queries.

2021-03-08 Thread Joel Bernstein
Collapse is designed to outperform grouping in the following scenario: There is high cardinality on the group field and group.ngroups is needed. If either of these conditions is not satisfied grouping will typically be faster. You will need to provide some more information about your setup to get

Re: Idle timeout expired and Early Client Disconnect errors

2021-03-08 Thread Joel Bernstein
This ticket shows how it is done in the solrconfig.xml: https://issues.apache.org/jira/browse/SOLR-9103 Joel Bernstein http://joelsolr.blogspot.com/ On Mon, Mar 8, 2021 at 9:18 AM ufuk yılmaz wrote: > How do you “register” something like a CloudSolrStream btw? Using Blob > Store API? > > Se

Fwd: Call for Presentations for ApacheCon 2021 now open

2021-03-08 Thread Anshum Gupta
FYI -- Forwarded message - From: Rich Bowen Date: Mon, Mar 8, 2021 at 12:32 PM Subject: Call for Presentations for ApacheCon 2021 now open To: The ApacheCon Planners and the Apache Software Foundation are pleased to announce that ApacheCon@Home will be held online, September 21

Call for Presentations for ApacheCon 2021 now open

2021-03-08 Thread Rich Bowen
[Note: You are receiving this because you are subscribed to a users@ list on one or more Apache Software Foundation projects.] The ApacheCon Planners and the Apache Software Foundation are pleased to announce that ApacheCon@Home will be held online, September 21-23, 2021. Once again, we’ll be

Please unsubscribe me

2021-03-08 Thread Robin Wei
Please unsubscribe me Thanks

OutOfMemoryError: when deleting/updating the data

2021-03-08 Thread Hitesh Khamesra
We are getting OutOfMemoryError, while concurrently deleting and updating the data. Looks like we don't have a thread pool to merge segment/index. Is it possible to control this behavior? Thanks. Hitesh === "o.a.s.s.HttpSolrCall null:org.apache.solr.common.SolrException: Server error writi

Re: Caffeine Cache Metrics Broken?

2021-03-08 Thread Stephen Lewis Bianamara
Okay, I have a hypothesis after some testing. It seems like what might be happening is that the cumulative stats are computed per process and per cache type. So if you change cache types from a cache you've had for a long time to a new one, the cumulative numbers may seem oddly low. In that case i

Re: OutOfMemoryError: when deleting/updating the data

2021-03-08 Thread Shawn Heisey
On 3/8/2021 8:18 PM, Hitesh Khamesra wrote: We are getting OutOfMemoryError, while concurrently deleting and updating the data. Looks like we don't have a thread pool to merge segment/index. Is it possible to control this behavior? Here's the important part from that massive exception stacktrac

Re: Caffeine Cache Metrics Broken?

2021-03-08 Thread Shawn Heisey
On 3/8/2021 11:06 PM, Stephen Lewis Bianamara wrote: So if you change cache types from a cache you've had for a long time to a new one, the cumulative numbers may seem oddly low. In that case it would be best to perform a reset of the process in your solr cluster for accurate metrics. If you ch

zk upconfig does not recognize ZK_HOST style url

2021-03-08 Thread Subhajit Das
Hi There, When I was trying to upload new configset to zookeeper using Solr control script, the -z parameter is not recognizing ZK_HOST style string. Say, I use ,,/solr, then the config is uploaded to directly, instead of /solr znode. Can anyone please help on this matter, if this is how it