On 11/26/2013 11:15 PM, Prasi S wrote: > What happens to the autowarmed queries if the servers is shutdown / jvm > crashes. > > Is there any possibility to recover that from the physical storage ( > trasaction log?)
The transaction log only contains data that is sent to Solr for indexing. Cached query data is lost when the program exits, so it cannot be used for autowarming. If the logs are set to at least INFO severity, they will contain a query history, but Solr doesn't have any way to pull those back out of the logfile and re-use them. If firstSearcher and/or newSearcher warming queries are defined in solrconfig.xml, then those will be re-done when Solr starts back up. Thanks, Shawn