Re: Solr 5.2.1 deadlock on commit

2015-12-13 Thread Ali Nazemian
Dear Emir, Hi, Actually Solr is in a deadlock state it will not accept any new document. (some of them will store in tlog and some of them not) However, It will response to the new query requests very slowly. Unfortunately right now I have not any access to full thread dump. But, as I mentioned,

Running Lucene/SOR on Hadoop

2015-12-13 Thread Dino Chopins
Hi, I've tried to figure out how can we run Lucene/SOLR on Hadoop, and found several sources. The last pointer is Apache Blur project and it is an incubating project. Is there any straightforward implementation of Lucene/SOLR on Hadoop? Or best practice of how to incorporate Lucene/SOLR on

Re: Solr 5.2.1 deadlock on commit

2015-12-13 Thread Mikhail Khludnev
Ali, 20 sounds a way much. Why woun't you start from the single thread, check that everything is correct, then steadily increase number of threads, checking that cluster utilization also increases with every step until you find a number which saturate Solr well, but won't be greater than

RE: Solr Cloud 5.3.0 Read Time Outs

2015-12-13 Thread Adrian Liew
Thanks Shalin and Eric. That was helpful. I will try reducing the commit frequency and let you know how it goes. Best regards, Adrian -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Sunday, December 13, 2015 2:42 AM To: solr-user

Re: Solr 5.2.1 deadlock on commit

2015-12-13 Thread Emir Arnautović
Hi Ali, I don't think that it is deadlock but like Mikhail said it is saturated and should try reduce load - try to make it work firs and then increase load to see its limits. It would be beneficial if you monitor your Solr and see bottlenecks. One such solution is Sematext's SPM:

Re: Running Lucene/SOR on Hadoop

2015-12-13 Thread Erick Erickson
First, what do you mean "run Lucene/Solr on Hadoop"? You can use the HdfsDirectoryFactory to store Solr/Lucene indexes on Hadoop, at that point the actual filesystem that holds the index is transparent to the end user, you just use Solr as you would if it was using indexes on the local file

Solr5.3.1 solrcloud Enabling Basic AUthentication

2015-12-13 Thread soledede_w...@ehsy.com
I want to restrict Admin UI , I know can config the security.json but how. if use sha256(password+salt) hash) ,how to submit the salt for solr server. who can give me a simple example Thanks soledede_w...@ehsy.com

Defining SOLR nested fields

2015-12-13 Thread santosh sidnal
Hi All, I want to define nested fileds in SOLR using schema.xml. we are using Apache Solr 4.7.0. i see some links which says how to do, but not sure how can i do it in schema.xml https://cwiki.apache.org/confluence/display/solr/Other+Parsers#OtherParsers-BlockJoinQueryParsers any help over

Re: Defining SOLR nested fields

2015-12-13 Thread Binoy Dalal
>From what I've seen, you can't nest fields in the schema.xml, since those are just declarations. If you want nested documents, you need to do so at index time with the _childDocuments_ json key in your doc. Take a look here: http://yonik.com/solr-nested-objects/ On Mon, Dec 14, 2015 at 6:10 AM