Re: [External] : Re: Querying Solr Locally through Java API without using HttpClient

2022-12-06 Thread Nagarajan Muthupandian
Hi Chris, Thanks for the details.. Our use case is simple, we have standalone solr servers, and custom request handler (plugin) is already defined and working as expected. The ask is we have to enhance the functionality of the Custom Request handler by providing a update feature as part of the

RE: Solr 9.1 performance

2022-12-06 Thread Joe Jones (DHCW - Software Development)
Workaround tested and no difference with or without it. New cloud set up with 1200mb heap for each instance and 32gb system RAM on each server. I'm seeing just over 20gb in system cache. Anti-virus exclusions applied and system doesn't appear to be swapping unnecessarily. One thing I have n

FieldCache and _version_field

2022-12-06 Thread Dominique Bejean
Hi, One of my customers has a huge collection (1.5 billion docs across 14 shards). All fields are correctly configured in order to enable docValues except _version_. They are still using the old configuration with indexed=true instead of docValues and hence _version_ populate FiledCache in JVM hea

Re: FieldCache and _version_field

2022-12-06 Thread Mikhail Khludnev
Hello, Dominique. I suppose it's used for updates and specifically in AtomicUpdateProcessorFactory and UpdateLog. Presumably, if that cluster can live without atomic updates, you can try to drop them out of update chain. On Tue, Dec 6, 2022 at 5:14 PM Dominique Bejean wrote: > Hi, > > One of my

Re: Solr 9.1 performance

2022-12-06 Thread Shawn Heisey
On 12/6/22 05:08, Joe Jones (DHCW - Software Development) wrote: Workaround tested and no difference with or without it. New cloud set up with 1200mb heap for each instance and 32gb system RAM on each server. I'm seeing just over 20gb in system cache. Anti-virus exclusions applied and syste

Re: Solr 9.1 performance

2022-12-06 Thread Shawn Heisey
On 12/6/22 07:53, Shawn Heisey wrote: If Solr were a single-threaded application, this might make some sense.  But Solr is heavily multithreaded, there is no need to have multiple nodes per machine to take full advantage of a multi-CPU system.  With multiple nodes, you're actually more likely t

Re: FieldCache and _version_field

2022-12-06 Thread Dominique Bejean
Hi Mikhail, Thank you for the response. More details. Solr is version 7.7.0 and collection replicas are TLOG. I will check, but I don't think atomic updates are required. Regards Dominique Le mar. 6 déc. 2022 à 15:43, Mikhail Khludnev a écrit : > Hello, Dominique. > I suppose it's used for u

Re: Wired behavior of maxClauseCount restriction since upgrading to solr 9.1

2022-12-06 Thread Chris Hostetter
: I'm happy to provide some details as I still do not really understand the : difference to the situation before. The main difference is coming from the changes introduced in LUCENE-8811 (Lucene 9.0) which sought to ensure that the "global" maxClauseCount would be honored no matter what kind o

Re: Wired behavior of maxClauseCount restriction since upgrading to solr 9.1

2022-12-06 Thread michael dürr
Hi Hoss, This is a really helpful explanation! Even though I already shifted to the usage of the {!terms} query for such large boolean clause queries, it feels a lot better to know how and why things behave differently compared to the 8x solr version. Thanks! Michael On Tue, Dec 6, 2022 at 7:32

EventListeners lib path

2022-12-06 Thread Eashwar Natarajan
Hi all, We want to register EventListener(EventListener (Solr 7.3.0 API) (apache.org) ) with DIH in data-config.xml to listen for events. ...