this just means that the time it takes to autowarm Solr is greater than your commit interval. Take a look at the admin page, I think it shows warmup time in plugins/stats>>core.
This should be happening on hard commit with openSearcher=true. Are you perhaps issuing commits from an indexing client? About your settings. I suspect the culprit is the autowarmCount for your caches. Quite often there's very little difference between an autowarm count of 32 and 1024, odd as it may seem. So the first thing I'd try is to reduce them down to, say, 128 or even lower. Solr will continue to run with this error, it's intended to notify you that you should look at your settings and adjust them. Best Erick On Thu, Jun 13, 2013 at 6:31 AM, Dhanesh Radhakrishnan <[email protected]> wrote: > Hi, > I'm getting following error when i indexed solr, > > org.apache.solr.common.SolrException: Error opening new searcher. exceeded > limit of maxWarmingSearchers=2, try again later. > 11:20:46 > WARNING > SolrCore > [profiles] Error opening new searcher. exceeded limit of > maxWarmingSearchers=2, try again later. > > When I googled I found that this too many commits in conjunction with > warming > > How can I remove this error ??? > > I'm mentioning some major modified settings in my solrConfig.xml > > > <autoCommit> > <maxTime>15000</maxTime> > <openSearcher>false</openSearcher> > </autoCommit> > > <!-- > <autoSoftCommit> > <maxTime>1000</maxTime> > </autoSoftCommit> > --> > > > <filterCache class="solr.FastLRUCache" size="4096" > initialSize="1024" autowarmCount="1024"/> > > <queryResultCache class="solr.LRUCache" size="4096" > initialSize="1024" autowarmCount="512"/> > > <documentCache class="solr.LRUCache" size="4096" initialSize="512" > autowarmCount="0"/> > > <queryResultWindowSize>48</queryResultWindowSize> > > > > > -- > dhanesh s.r --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
