Security specific url-patterns

2014-01-13 Thread sureshrk19
Hi, I'm using SOLR (deployed on jetty) for last few months. I got into a tricky situation and spent 2 days but, no luck. I did setup SOLR on Jetty and it is working fine. Now, I need to add security to specific section of SOLR functionality i.e., dataimport, replication etc... I want to make all

SOLR 4.4 - Slave always replicates full index

2014-01-23 Thread sureshrk19
Hi, I have configured single core master, slave nodes on 2 different machines. The replication configuration is fine and it is working but, what I observed is, on every change to master index full replication is being triggered on slave. I was planning to get only incremental indexing done on eve

Re: SOLR 4.4 - Slave always replicates full index

2014-01-24 Thread sureshrk19
Erick, Thanks for the reply.. I'm not committing each document but, have following configuration in solrconfig.xml (commit every 5mins). 30 false Also, if you look at my master config, I do not have 'optimize'. startup commit Is there any way other option

Re: SOLR 4.4 - Slave always replicates full index

2014-02-27 Thread sureshrk19
Thanks Shawn and Erick. I followed SOLR configuration document and modified index strategy. Looks good now. I haven't seen any problems in last 1 week. Thanks for your suggestions. -- View this message in context: http://lucene.472066.n3.nabble.com/SOLR-4-4-Slave-always-replicates-full-index

stopwords issue with edismax

2014-02-27 Thread sureshrk19
Hi All, I'm having a problem while searching for some string with a word defined in stopwords.txt. eg: I have 'of' defined in stopwords.txt My schema analyzer's defined as follows: I have defined the filed

Re: stopwords issue with edismax

2014-02-28 Thread sureshrk19
Ahmet, Thanks for the reply.. Here is the query: http://localhost:8080/solr/collection1/select?q=a+of+b&fq=type%3AEntity&wt=json&indent=true And here is my stopwords_en.txt content a an and are as at be but by for if in into is it no not of on or -- View this message in context: http://l

Re: stopwords issue with edismax

2014-02-28 Thread sureshrk19
explicit For all handlers I have the same setting. Another observation I have is, I'm getting results when I use, 'q.op=OR' the default operator set in solrconfig.xml is 'AND' the query working fine is: http://localhost:8080/solr/collection1/select?q=bank+america&wt=json&indent=true&q.op=OR

Re: stopwords issue with edismax

2014-02-28 Thread sureshrk19
Thanks for taking time on this... Here is my request handler definition: edismax explicit 10 all_text number party name all_code ent_name all_text number^3 name^5 party^3 all_code^2 ent_name^7 id description AND Name which is indexed

Re: stopwords issue with edismax

2014-03-02 Thread sureshrk19
Jack, Thanks for the reply. Yes. your observation is right. I see, stopwords are not being ignore at query time. Say, I'm searching for 'bank of america'. I'm expecting 'of' should not be the part of search. But, here I see 'of' is being sent. Same is the query syntax for 'OR' and 'AND' operator

Re: stopwords issue with edismax

2014-03-04 Thread sureshrk19
Thanks Jack. I could fix this problem by adding stopwords 'filter' condition in definition for "number" and "all_code" -- View this message in context: http://lucene.472066.n3.nabble.com/stopwords-issue-with-edismax-tp4120339p4121176.html Sent from the Solr - User mailing list archive at N