Re: Http Connection is hanging while deleteByQuery

2011-02-08 Thread shan2812
Hi, At last the migration to Solr-1.4.1 does solve this issue :-).. Cheers -- View this message in context: http://lucene.472066.n3.nabble.com/Http-Connection-is-hanging-while-deleteByQuery-tp2367405p2451214.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: escaping parenthesis in search query don't work...

2011-02-01 Thread shan2812
Hi, I think you can search without the escape sequence as its not necessary. Instead just try (term) and it should work. Regards -- View this message in context: http://lucene.472066.n3.nabble.com/Http-Connection-is-hanging-while-deleteByQuery-tp2367405p2397455.html Sent from the Solr - User

Re: Http Connection is hanging while deleteByQuery

2011-01-31 Thread shan2812
This is the log trace.. 2011-01-31 10:07:18,837 ERROR (main)[SearchBusinessControllerImpl] Solr connecting to url: http://10.145.10.154:8081/solr 2011-01-31 10:07:18,873 DEBUG (main)[DefaultHttpParams] Set parameter http.useragent = Jakarta Commons-HttpClient/3.1 2011-01-31 10:07:18,880 DEBUG

Re: Http Connection is hanging while deleteByQuery

2011-01-30 Thread shan2812
Hello Ravi Kiran, I am not quite sure if it has anything to do with the number of records. Anyways there are around 400K docs in Solr, and my deleteByQuery() tries to delete about 400 docs.. The thing is, it does seem to delete the records, but the control never seems to come back to the

Http Connection is hanging while deleteByQuery

2011-01-28 Thread shan2812
Hi, I am trying to delete Solr documents using deleteByQuery(). Unfortunately it simply hangs, for a long time. I have tried using both SimpleHttpConnectionManager and MultiThreaded...(default) 1. SolrServer solr; SimpleHttpConnectionManager cm = new SimpleHttpConnectionManager(true); the

Re: Http Connection is hanging while deleteByQuery

2011-01-28 Thread shan2812
Though it may not be needed, just to ad.. this is how I delete by query UpdateResponse updateResponse = solr.deleteByQuery(new SolrQuery(my_query)); -- View this message in context: http://lucene.472066.n3.nabble.com/Http-Connection-is-hanging-while-deleteByQuery-tp2367405p2367410.html Sent

Case Insensitive sorting while preserving case during faceted search

2010-12-16 Thread shan2812
Hi, I am trying to do a facet search and sort the facet values too. First I tried with 'solr.TextField' as field type. But this does not return sorted facet values. After referring to FAQ(http://wiki.apache.org/solr/FAQ#Why_Isn.27t_Sorting_Working_on_my_Text_Fields.3F), I changed it to