querying on shards

2012-03-19 Thread Ankita Patil
Hi, I wanted to know whether it is feasible to query on all the shards even if the query yields data only from a few shards n not all. Or is it better to mention those shards explicitly from which we get the data and only query on them. for example : I have 4 shards. Now I have a query which yiel

solr stopwords issue - documents are not matching

2012-01-24 Thread Ankita Patil
Hi, I am using solr-3.4. My part of the schema looks like : stopwords_en.txt contains : a an and are as etc.. Now when I search for "*buy house*" So

Re: Language Detection in SOLR 3.5

2011-12-08 Thread Ankita Patil
I have apache-solr-langid-3.5.jar and also the jars in contrib/langid/lib Ankita On 8 December 2011 18:20, O. Klein wrote: > Did you also install apache-solr-langid-4.0.jar ? > > And the jars in contrib/langid/lib ? > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Lan

Language Detection in SOLR 3.5

2011-12-08 Thread Ankita Patil
Hi, I tried to implement language detection in SOLR 3.5. I added the processor class for langDetect in solrconfig.xml : cContent language en langid I declared the filed "language" in the schema as the output field for the detect

Re: writing to shards

2011-11-13 Thread Ankita Patil
nd have Solr "do the right thing", so > you have to address the shard specifically... > > Some of the new Solr cloud stuff may change this, but that's not out there > yet. > > Best > Erick > > On Fri, Nov 11, 2011 at 5:38 AM, Ankita Patil > wrote: > >

Re: Dynamic adding of shards

2011-11-13 Thread Ankita Patil
dmin#RELOAD > > Best > Erick > > On Thu, Nov 10, 2011 at 12:20 AM, Ankita Patil > wrote: > > Hi, > > One way to add new shards is to add them in the shard parameter in the > > solrconfig.xml file. But this will require to restart the solr server > > everyti

writing to shards

2011-11-11 Thread Ankita Patil
Hi, I have an index which has the shard parameter pointing to 2 shards(server1, server2). While reading from the shards you query on the index with the shard parameter and it will retrieve the documents from both the shards. Now I want to add the documents to their respective shards depending on

Dynamic adding of shards

2011-11-09 Thread Ankita Patil
Hi, One way to add new shards is to add them in the shard parameter in the solrconfig.xml file. But this will require to restart the solr server everytime you add a new shard. I wanted to know if it is possible to dynamically add shards without having to restart the solr server. If yes how? Thanks

Re: change solr url

2011-11-01 Thread Ankita Patil
I am not very clear. Could you explain a bit in detail or give an example. Ankita. On 2 November 2011 06:26, Chris Hostetter wrote: > > : Is it possible to change the url for solr admin?? > : What i want is : > : http://192.168.0.89:8983/solr/private/coreName/admin > : > : i want to add /privat

change solr url

2011-10-31 Thread Ankita Patil
Hey, Is it possible to change the url for solr admin?? What i want is : http://192.168.0.89:8983/solr/private/coreName/admin i want to add /private/ before the coreName. Is that possible? If yes how? Ankita.