RE: CDCR

2020-12-01 Thread Gell-Holleron, Daniel
Hi Shalin, I did try to do that but it hadn't made any difference, the remote clusters did not update. Autocommit is already set on the remote clusters as follows: ${solr.autoCommit.maxTime:15} 1 true I can also see in t

RE: CDCR

2020-12-01 Thread Gell-Holleron, Daniel
Hi Shalin, Just to add, in the exception with 'CdcrUpdateLogSynchronizer - Caught unexpected exception' it says it's because the SolrCore is loading. I don't know if this is down to the data being quite large? Thanks, Daniel -Original Message- From: Gell-Holleron, Daniel Sent: 01

Re: Need help to configure automated deletion of shard in solr

2020-12-01 Thread Pushkar Mishra
Hi Team, As I explained the use case , can someone help me out to find out the configuration way to delete the shard here ? A quick response will be greatly appreciated. Regards Pushkar On Mon, Nov 30, 2020 at 11:32 PM Pushkar Mishra wrote: > > > On Mon, Nov 30, 2020, 9:15 PM Pushkar Mishra

Re: Need help to configure automated deletion of shard in solr

2020-12-01 Thread Erick Erickson
This is still confusing. You haven’t told us what router you are using, compositeId or implicit? If you’re using compositeId (the default), you will never have empty shards because docs get assigned to shards via a hashing algorithm that distributes them very evenly across all available shards. Y

Re: Can solr index replacement character

2020-12-01 Thread Erick Erickson
Solr handles UTF-8, so it should be able to. The problem you’ll have is getting the UTF-8 characters to get through all the various transport encodings, i.e. if you try to search from a browser, you need to encode it so the browser passes it through. If you search through SolrJ, it needs to be enco

Solr8.7 - How to optmize my index ?

2020-12-01 Thread Matheo Software
Hi All, With Solr5.4, I used the UI button but in Solr8.7 UI this button is missing. So I decide to use the command line: curl http://xxx:8983/solr/my_core/update?optimize=true My collection my_core exists of course. The answer of the command line is: { "responseHeader":{

RE: Solr8.7 - How to optmize my index ?

2020-12-01 Thread Info MatheoSoftware
Hi All, I found the solution, I must do : curl ‘http://xxx:8983/solr/my_core/update? commit=true&expungeDeletes=true’ It works fine Thanks, Bruno De : Matheo Software [mailto:i...@matheo-software.com] Envoyé : mardi 1 déc

Re: Solr8.7 - How to optmize my index ?

2020-12-01 Thread Walter Underwood
Even better DO NOT OPTIMIZE. Just let Solr manage the indexes automatically. wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) > On Dec 1, 2020, at 11:31 AM, Info MatheoSoftware > wrote: > > Hi All, > > > > I found the solution, I must do : > > curl

java.lang.IllegalArgumentException: Comparison method violates its general contract

2020-12-01 Thread Dawn
hello: jdk11 solr8.7.0 org.apache.solr.common.SolrException: java.lang.IllegalArgumentException: Comparison method violates its general contract QueryRescorer line 114 Comparator sortDocComparator = new Comparator() { @Override public int compare(ScoreDoc a, ScoreDoc b) { // Sort by scor

Re: Need help to configure automated deletion of shard in solr

2020-12-01 Thread Pushkar Mishra
Hi Erick, It is implicit. TTL thing I have explored but due to some complications we can't use. that . Let me explain the actual use case . We have limited space ,we can't keep storing the document for infinite time . So based on the customer's retention policy ,I need to delete the documents. An