Optimize requirements

2021-08-15 Thread Ishay Levi
Hi all, We are running solr 8.9 and would like to perform optimize. Some questions: 1. What is the required diskspace for optimize? 2. If we set TieredMergePolicyFactory values as maxMergeAtOnce = 10 maxMergedSegmentMB = 5120 does it means that at the same time 20 segments with max size of 5

Re: Unexpected results while performing a full text search with an asterisk

2021-08-15 Thread Netta Steinberg
Thanks Stephen, I didn't know that there is no language analysis when using an asterisk. There are two things (somewhat related) that bother me: 1. as far as I know, the query parameter we send to SolR contains only the query string, without a specific field to search for, so I'm not sure which

Re: Unexpected results while performing a full text search with an asterisk

2021-08-15 Thread matthew sporleder
RequestHander -> defaults -> df On Sun, Aug 15, 2021 at 6:33 AM Netta Steinberg wrote: > > Thanks Stephen, I didn't know that there is no language analysis when using > an asterisk. > There are two things (somewhat related) that bother me: > 1. as far as I know, the query parameter we send to So

Re: Optimize requirements

2021-08-15 Thread Walter Underwood
Why do you want to run a force merge (misnamed “optimize”). What benefits do you expect? A forced merge is almost never needed and it is often not a good idea. wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) > On Aug 15, 2021, at 3:20 AM, Ishay Levi wrot

RE: Optimize requirements

2021-08-15 Thread Ishay Levi
Our Index is big, relatively static and have deletions, we would like to optimize and expunge deletes >From what I understood from the solr documentation, TieredMergePolicyFactory >can be modified to minimize deletions but we will still end up with >(potentially) 20% deleted documents. -Or