Re: SOl6.3 Alchemy Annotator Not Working

2016-11-27 Thread soumitra80
This issue has been resolved. Please close this -- View this message in context: http://lucene.472066.n3.nabble.com/SOl6-3-Alchemy-Annotator-Not-Working-tp4307228p4307625.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Analyzer Language

2016-11-27 Thread Chien Nguyen
many thank to you! @@ -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Analyzer-Language-tp4307585p4307613.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solrcloud connect/reconnect to Zookeeper (rebooting ZK nodes)

2016-11-27 Thread The Dobbo
Good news, or bad... I’ve just tried to reproduce in a new environment and everything worked as expected. Perhaps something else was at work in the environment at the time. I’ll wait until I need to reboot prod zookeeper again and I’ll grab logs and zookeeper health whilst I do the reboots, to s

Re: Solrcloud connect/reconnect to Zookeeper (rebooting ZK nodes)

2016-11-27 Thread Brendan Dobinson
Thanks for the response. I have never noticed any inconsistencies with zookeeper and the leader knows it has two followers (of course this is stats from now, I wish I had looked at this before the restarts) #echo mntr | nc 127.0.0.1 2181 zk_version 3.4.8--1, built on 02/06/2016 03:18 GMT …

Re: Solrcloud connect/reconnect to Zookeeper (rebooting ZK nodes)

2016-11-27 Thread Erick Erickson
This seems very weird. Do the Zookeepers know about each other correctly? Some evidence for mis-configured Zookeepers might be if you rebooted ZK3 and had this happen again. But that's a wild shot in the dark. Best, Erick On Sun, Nov 27, 2016 at 4:42 PM, The Dobbo wrote: > Hi, > I have a 3 exte

Solrcloud connect/reconnect to Zookeeper (rebooting ZK nodes)

2016-11-27 Thread The Dobbo
Hi, I have a 3 external node ZK (zookeeper-3.4.8) cluster managing my 6 node solrcloud (solr 6.1) cluster. Recently due to dirty cow I had to reboot my Solr and zookeeper clusters. I rebooted the solr nodes one by one and all was fine. I then rebooted zookeeper nodes 1 and 2 (with at least 10 mi

Re: Solr 6 Performance Suggestions

2016-11-27 Thread Shawn Heisey
On 11/27/2016 12:51 PM, Florian Gleixner wrote: > On 22.11.2016 14:54, Max Bridgewater wrote: >> test cases were exactly the same, the machines where exactly the same >> and heap settings exactly the same (Xms24g, Xmx24g). Requests were >> sent with > Setting heap too large is a common error. Rece

Re: Solr Analyzer Language

2016-11-27 Thread Steve Rowe
Hi Chien, By “unsigned” I think you mean without diacritics, for example ‘D’ instead of ‘Đ'. I think you can get what you want by including ICUFoldingFilterFactory in your analyzer - see .

Re: Solr 6 Performance Suggestions

2016-11-27 Thread Florian Gleixner
On 22.11.2016 14:54, Max Bridgewater wrote: > test cases were exactly the same, the machines where exactly the same and > heap settings exactly the same (Xms24g, Xmx24g). Requests were sent with Setting heap too large is a common error. Recent Solr use the filesystem cache, so you don't have to s

Solr Analyzer Language

2016-11-27 Thread Chien Nguyen
Hi, everyone. Now, i want to search with input is Unsigned Vietnamese. How can i do to get result same with Vietnamese input? I hope get a help from u. Thank u so much. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Analyzer-Language-tp4307585.html Sent from the

RE: Again : Query formulation help

2016-11-27 Thread Prasanna S. Dhakephalkar
Hi, There was another thought in our internal group, I want your opinion will it give me what I am looking for In fq give following {!frange l=2 u=4}sum( exists(query({!v='code1:'})), exists(query({!v='code2:'})), exists(query({!v='code3:'})), exists(query({!v='code4:'})) ) Rega

reindexing a solr collection of nested documents

2016-11-27 Thread adfel70
Hi I have a solr collection of nested documents. I would like to reindex this collection to a new collection ,without running the original process that created this collection. If this was not a a collection of nested documents, I would use the /export handler to export all the documents and then

Highlight is Empty for A Matched Query

2016-11-27 Thread Furkan KAMACI
My content has that line: \n \n\n Intelligent En When I search for *intelligent *it returns 1 response as well. My content field is defined as: Highlighter is default too. I just make *highlight=on* and *hl.field=content *However my response does not have any highlights. When I t

Re: Query parser behavior with AND and negative clause

2016-11-27 Thread Erik Hatcher
If you start a query with '{' then the entire expression uses that qparser. That's why the second one doesn't work - it ignores the AND... stuff. Starting a nested query with a lucene qparser character gets it out of that rut. Erik > On Nov 25, 2016, at 14:23, Sandeep Khanzode > wrot

Re: update a document without changing anything

2016-11-27 Thread Dorian Hoxha
Thanks Ishan. On Sun, Nov 27, 2016 at 6:42 AM, Ishan Chattopadhyaya < ichattopadhy...@gmail.com> wrote: > Maybe do an "inc" of 0 to a numeric field for every document. > https://cwiki.apache.org/confluence/display/solr/ > Updating+Parts+of+Documents > > On Wed, Nov 23, 2016 at 2:13 PM, Dorian Hox