Hi,

I have following in my solrconfig.xml

    <autoCommit>
      <maxTime>60000</maxTime>
      <openSearcher>false</openSearcher>
    </autoCommit>

    <autoSoftCommit>
      <maxTime>30000</maxTime>
    </autoSoftCommit>

I am triggering many solrClient.add( collName. <docs>, commitWithin ) calls
from my code and commtWithin=6hours

Based on the above configuration, I expect a soft commit to happen every 30
seconds but I don't see that happening. When I hit a solr query after 10
mins of add operation, I don't see any documents in the solr admin UI. Solr
Admin UI mentions 0 documents even after 10-20 mins of add operation.

Solr version is 8.9.0.
updateLog is enabled.
managed-schema has _version_ field

Does commitWithin override the autosoftCommit setting ?

What could be the problem?

Reply via email to