Re: How to monitor the performance of the SolrCloud cluster in real time

2020-02-23 Thread Emir Arnautović
Hi Adonis, If you are up to 3rd party, cloud based monitoring solution, you can try our integration for Solr/SolrCloud: https://sematext.com/cloud/ Thanks, Emir -- Monitoring - Log Management - Alerting - Anomaly Detection Solr & Elasticsearch Consulting Support

Re: Solr Commit Not Working

2020-02-23 Thread Paras Lehana
Hi, This is above result is what I want to be able to commit but when I run the > same command with commit=true it will not work like below. > curl > 'http://54.146.2.60:8983/solr/eatzcollection/update/json?commit=true' -d > '[{"id":"location_23_deal_51","votes":"23"}]' -H >

Re: Solr Commit Not Working on Update

2020-02-23 Thread Paras Lehana
Hi, This is above result is what I want to be able to commit but when I run the > same command with commit=true it will not work like below. > curl > 'http://54.146.2.60:8983/solr/eatzcollection/update/json?commit=true' -d > '[{"id":"location_23_deal_51","votes":"23"}]' -H >

Re: Would changing the schema version from 1.5 to 1.6 require a reindex

2020-02-23 Thread Paras Lehana
Hi Karl, Maybe someone else could help if reindexing is needed if we upgrade Schema version. However, I guess, useDocValuesAsStored only impacts the query side assuming docValues had already been stored during indexing. It's actually easier to try querying the fields after enabling this parameter

Re: use highlighting on multivalued fields with positionIncrementGap 0

2020-02-23 Thread Paras Lehana
I haven't worked with highlighting much but what's the need to store terms in multivalued field? On Fri, 14 Feb 2020 at 20:04, Nicolas Franck wrote: > I'm trying to use highlighting on a multivalued text field (analysis not > so important) .. > > > { text: [ "hello", "world" ], id: 1 } > >

Re: Query Autocomplete Evaluation

2020-02-23 Thread Paras Lehana
Hi Audrey, I work for Auto-Suggest at IndiaMART. Although we don't use the Suggester component, I think you need evaluation metrics for Auto-Suggest as a business product and not specifically for Solr Suggester which is the backend. We use edismax parser with EdgeNGrams Tokenization. Every week,

Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2020-02-23 Thread Paras Lehana
Hi, We are running another 24 hour test with 8GB JVM and so far it is also > running flawlessly. If this is the case, as Erick mentioned, the failures were probably due to long GC pauses. During couple of my stress testings, I had found that decreasing JVM helps sometimes (it makes GC more

Re: How to monitor the performance of the SolrCloud cluster in real time

2020-02-23 Thread Adonis Ling
Hi Erick, Thanks for your reply! 1, 5, and 15 minute mean rates work though they are coarse-grained metrics of the number of requests. I'm also interested in the latency, but I worry the percentile latency metrics are not sensitive to the burst requests due to the historical impacts. Erick