Re: Deeply nested search return

2017-09-02 Thread Alexandre Rafalovitch
What's the actual _search_ use case? And what do you want to return once you do your search? Regards, Alex On 2 Sep. 2017 1:06 pm, "Moenieb Davids" wrote: > Hi All, > > I would like to know if anybody has done deeply nested searches. > I am currently sitting with the use case below: > Succe

Re: compiling Solr

2017-09-02 Thread Erick Erickson
I just hit that page with a sledgehammer and redirected people to the "How to Contribute" page. On Thu, Jul 13, 2017 at 3:06 PM, Shawn Heisey wrote: > On 7/13/2017 2:16 PM, Steve Pruitt wrote: >> I have been following the instructions on the Solr Wiki for compiling Solr. >> I started with the 6

Re: Solr uses lots of shared memory!

2017-09-02 Thread Kevin Risden
I haven't looked at reproducing this locally, but since it seems like there haven't been any new ideas decided to share this in case it helps: I noticed in Travis CI [1] they are adding the environment variable MALLOC_ARENA_MAX=2 and so I googled what that configuration did. To my surprise, I came

Deeply nested search return

2017-09-02 Thread Moenieb Davids
Hi All, I would like to know if anybody has done deeply nested searches. I am currently sitting with the use case below: Successfully Indexed Document: Level1_Doc Ø ID Ø DocType Ø Level2_Doc Ø ID Ø DocType Ø Level3_Doc Ø ID Ø DocType Ø Level4_Doc Ø ID Ø DocType What is the

Re: Error when using IndexMergeTool

2017-09-02 Thread Erick Erickson
Ah, my mistake. The merge tool apparently has to lock the index, which actually makes sense. Best, Erick On Sat, Sep 2, 2017 at 9:08 AM, Zheng Lin Edwin Yeo wrote: > Hi Erick, > > Thanks for your reply. > > However, I get this error when I tried to run the IndexMergeTool when Solr > is running.

Re: Error when using IndexMergeTool

2017-09-02 Thread Zheng Lin Edwin Yeo
Hi Erick, Thanks for your reply. However, I get this error when I tried to run the IndexMergeTool when Solr is running. But the merge is successful when I stop Solr. What could be the reason? Merging... Exception in thread "main" org.apache.lucene.store.LockObtainFailedException: Lock held by an

Re: Knn classifier doesn't work

2017-09-02 Thread Tommaso Teofili
it would sound like none of the docs in your index has the "class" field, in your case Tags, whereas classification needs some bootstrapping (add some examples of correctly classified docs to the index beforehand). On the other hand the naive bayes implementation has definitely a bug as the MultiFi