Hi Chris,

Thanks for looking into it.

Here is the sample query.

http://localhost:8080/solr/core0/select/?qt=autosuggest&q=a

I am using a request handler with a name autosuggest with the following
configuration.

  <requestHandler name="autosuggest" class="solr.SearchHandler">
             <lst name="defaults">
               <str name="wt">json</str>
               <str name="fl">name,score</str>
               <str name="sort">score desc</str>
               <str name="indent">true</str>
           </lst>
   </requestHandler>

The debug timing for the above query is as follows.

"timing":{
        "time":3333.0,
        "prepare":{
         "time":0.0,
         "org.apache.solr.handler.component.QueryComponent":{
          "time":0.0},
         "org.apache.solr.handler.component.FacetComponent":{
          "time":0.0},
         "org.apache.solr.handler.component.MoreLikeThisComponent":{
          "time":0.0},
         "org.apache.solr.handler.component.HighlightComponent":{
          "time":0.0},
         "org.apache.solr.handler.component.StatsComponent":{
          "time":0.0},
         "org.apache.solr.handler.component.DebugComponent":{
          "time":0.0}},
        "process":{
         "time":3333.0,
         "org.apache.solr.handler.component.QueryComponent":{
          "time":3332.0},
         "org.apache.solr.handler.component.FacetComponent":{
          "time":0.0},
         "org.apache.solr.handler.component.MoreLikeThisComponent":{
          "time":0.0},
         "org.apache.solr.handler.component.HighlightComponent":{
          "time":0.0},
         "org.apache.solr.handler.component.StatsComponent":{
          "time":0.0},
         "org.apache.solr.handler.component.DebugComponent":{
"time":1.0}}}}}

This is not at all consistent, sometimes it is happening and sometimes not.

Thanks,

Johnny

-- 
View this message in context: 
http://lucene.472066.n3.nabble.com/Query-performance-very-slow-even-after-autowarming-tp2010384p2084263.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to