Re: solr.autoSoftCommit.maxDocs:1

2024-10-07 Thread Jan Høydahl
Rule of thumb is to commit as infrequently as possible and to batch ADD requests instead of pushing one doc at a time. Also avoid the client application doing explicit COMMIT calls to Solr. All this has a cost. So if your requirement is an indexing latency of 30s, set autoCommit based on time 3

Re: solr.autoSoftCommit.maxDocs:1

2024-10-07 Thread Vincenzo D'Amore
Hi Jan, thanks for answering. This is the case, the collection has to be updated in real time, I'm just afraid that multiple updates could slow down the cluster.

Re: solr.autoSoftCommit.maxDocs:1

2024-10-07 Thread Vincenzo D'Amore
Do you know where I could look at the source code for autoCommit and autoSoftCommit? I would try to understand what happens in solrcloud cluster after a softcommit is triggered. On Sun, Oct 6, 2024 at 6:13 PM Dmitri Maziuk wrote: > On 10/6/24 10:22, Jan Høydahl wrote: > > Such a low number gener