Our production Solr-Slaves-Cores (we have about 40 Cores (each has a moderate size about 10K documents to 90K documents)) produce many exceptions of type:
014-11-05 15:06:06.247 [searcherExecutor-158-thread-1] ERROR org.apache.solr.search.SolrCache: Error during auto-warming of key:org.apache.solr.search.QueryResultKey@62340b01 :org.apache.solr.search.EarlyTerminatingCollectorException Our relevant solrconfig is <updateHandler class="solr.DirectUpdateHandler2"> <autoCommit> <maxTime>180000</maxTime><!-- in ms --> </autoCommit> </updateHandler> <query> <maxWarmingSearchers>2</maxWarmingSearchers> <filterCache class="solr.FastLRUCache" size="8192" initialSize="8192" autowarmCount="4096"/> <!-- queryResultCache caches results of searches - ordered lists of document ids (DocList) based on a query, a sort, and the range of documents requested. --> <queryResultCache class="solr.FastLRUCache" size="8192" initialSize="8192" autowarmCount="4096"/> <!-- documentCache caches Lucene Document objects (the stored fields for each document). Since Lucene internal document ids are transient, this cache will not be autowarmed. --> <documentCache class="solr.FastLRUCache" size="8192" initialSize="8192" autowarmCount="4096"/> </query> What exactly does the exception mean? Thank you! -- Dirk --