On 1/30/2013 10:31 AM, Jack Krupansky wrote:
Do you have any customized settings for <useColdSearcher>, warming
queries, or customized settings for the old/deprecated <indexDefaults>
or <mainIndex>? Try using the settings from the latest solrconfig.xml
and then customize from there. Or at least see how they are different.
Jack,
Is there any possibility that their failure could be caused by a very
very large updateLog?
If not, the rest of this probably doesn't apply. If so:
Aditya, a large updateLog is generated when a large amount of indexing
is done without any hard commits. One way to make things better without
changing the way you index is to put nonzero values for maxDocs and/or
maxTime into autoCommit, with openSearcher=false.
http://wiki.apache.org/solr/SolrConfigXml#Update_Handler_Section
Another option is to turn off the updateLog entirely. That would not be
recommended if you are using SolrCloud. If there's no cloud, you'd
probably be OK, but you'd also want to change from
NRTCachingDirectoryFactory to MMapDirectoryFactory to avoid data loss.
Thanks,
Shawn