Nothing should be opening new searchers in that case unless the commit is happening from outside. “Outside” here is a SorlJ program that either commits or specifies a commitWithin for an add. By default, post.jar also issues a commit at the end.
I’d look at whatever is adding new documents to the system. Does your Solr log show any updates and what are the parameters if so? BTW, the setting for hard commit openSearcher=false _only_ applies to autocommits. The default behavior of an explicit commit from elsewhere will open a new searcher. > My assumption is that until a new searcher is created all the > newly indexed docs will not be visible This should be the case. So regardless of what the admin says, _can_ you see newly indexed documents? Best, Erick > On Mar 9, 2019, at 7:24 PM, John Davis <johndavis925...@gmail.com> wrote: > > Hi there, > I couldn't find an answer to this in the docs: if openSearcher is set to > false in the autocommit with no softcommits, what triggers a new one to be > created? My assumption is that until a new searcher is created all the > newly indexed docs will not be visible. Based on the solr admin console I > do see a new one being created every few minutes but I could not find the > parameter that controls it. > > John