You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by sunnyfr <jo...@gmail.com> on 2009/01/29 18:12:44 UTC

warmupTime : 0

Hi,

Do you think it's normal to have warmupTime : 0 ??

searcher  
class: 	org.apache.solr.search.SolrIndexSearcher  
version: 	1.0  
description: 	index searcher  
stats: 	searcherName : Searcher@6f7cf6b6 main
caching : true
numDocs : 8207035
maxDoc : 8239991
readerImpl : ReadOnlyMultiSegmentReader
readerDir : org.apache.lucene.store.FSDirectory@/data/solr/video/data/index
indexVersion : 1228743257996
openedAt : Thu Jan 29 17:42:08 CET 2009
registeredAt : Thu Jan 29 17:42:09 CET 2009
warmupTime : 0 

I've around 12M of data.


    <filterCache
      class="solr.FastLRUCache"
      size="5120"
      initialSize="500"
      autowarmCount="100"/>

   <!-- 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="5120"
      initialSize="512"
      autowarmCount="32"/>

  <!-- 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="5120"
      initialSize="512"
      autowarmCount="0"/>


thanks a lot,

-- 
View this message in context: http://www.nabble.com/warmupTime-%3A-0-tp21731301p21731301.html
Sent from the Solr - User mailing list archive at Nabble.com.


RE: warmupTime : 0

Posted by "Feak, Todd" <To...@smss.sony.com>.
This usually represents anything less then 8ms if you are on a Windows
system. The granularity on timing on Windows systems is around 16ms.

-Todd feak

-----Original Message-----
From: sunnyfr [mailto:johanna.34@gmail.com] 
Sent: Thursday, January 29, 2009 9:13 AM
To: solr-user@lucene.apache.org
Subject: warmupTime : 0


Hi,

Do you think it's normal to have warmupTime : 0 ??

searcher  
class: 	org.apache.solr.search.SolrIndexSearcher  
version: 	1.0  
description: 	index searcher  
stats: 	searcherName : Searcher@6f7cf6b6 main
caching : true
numDocs : 8207035
maxDoc : 8239991
readerImpl : ReadOnlyMultiSegmentReader
readerDir :
org.apache.lucene.store.FSDirectory@/data/solr/video/data/index
indexVersion : 1228743257996
openedAt : Thu Jan 29 17:42:08 CET 2009
registeredAt : Thu Jan 29 17:42:09 CET 2009
warmupTime : 0 

I've around 12M of data.


    <filterCache
      class="solr.FastLRUCache"
      size="5120"
      initialSize="500"
      autowarmCount="100"/>

   <!-- 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="5120"
      initialSize="512"
      autowarmCount="32"/>

  <!-- 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="5120"
      initialSize="512"
      autowarmCount="0"/>


thanks a lot,

-- 
View this message in context:
http://www.nabble.com/warmupTime-%3A-0-tp21731301p21731301.html
Sent from the Solr - User mailing list archive at Nabble.com.



Re: warmupTime : 0

Posted by Yonik Seeley <ys...@gmail.com>.
On Thu, Jan 29, 2009 at 12:12 PM, sunnyfr <jo...@gmail.com> wrote:
> Do you think it's normal to have warmupTime : 0 ??

Sure, if the caches were empty or almost empty (say on startup).

-Yonik