On 8/7/2021 9:07 PM, Reej Nayagam wrote:
Also this error is seen prior to that
Performance warning : Overlapping on EeckSearchers=2
That's not an error. It says right in the message "warning", and it is
a warning.
This happens when you issue commits too frequently. What's happening is
that the searchers created during previous commits aren't finished
warming before additional searchers are created. You need to do commits
(that open a new searcher) less frequently. Solr prevents subsequent
commits from opening searchers until the count of warming searhers drops
below the configured maximum.
https://cwiki.apache.org/confluence/display/solr/FAQ#FAQ-Whatdoes%22PERFORMANCEWARNING:OverlappingonDeckSearchers=X%22meaninmylogs?
The message about the possible bug should be fine in the end -- as soon
as the message is logged, the resource it's saying isn't closed is
actually closed. It does probably mean that something's not written
right elsewhere in the DIH code, but there shouldn't be an actual leak.
Thanks,
Shawn