Re: Multiple hashJoin or innerJoin

2017-06-18 Thread Zheng Lin Edwin Yeo
Hi Joel, Yes, I have tried the hashJoin. This didn't give the timeout. If I used the /select handler, I will get 1000 records returned, and if I use the /export handler, there are too many records for the browser to display. The current count is 280,000. As I have many fields (more than 100

Re: Multiple hashJoin or innerJoin

2017-06-18 Thread Joel Bernstein
About the timeout error. One thing to look at is with the inner join below: innerJoin(innerJoin( search(people, q=*:*, fl="personId,name", sort="personId asc"), search(pets, q=type:cat, fl="pertsId,petName", sort="personId asc"), on="personId=petsId" ) If the left side of the join is very

Re: Multiple hashJoin or innerJoin

2017-06-18 Thread Joel Bernstein
The search expressions don't appear to be using the /export handler. Streaming joins require the export hander because all the results that match the query need to be considered in the join. When debugging these types of multi-collection joins you need to build up the expression piece by piece.

Re: org.apache.lucene.index.CheckIndex throws Illegal initial capacity: -16777216

2017-06-18 Thread Moritz Michael
Hello Erick, I'm aware that it's not possible to upgrade a Solr 4 index directly to a Solr 6 index, so I planned to do an upgrade to 5 first and then to 6. Sorry, I should have been more precisely with my

Re: node not joining the rest of nodes in cloud

2017-06-18 Thread Erick Erickson
Glad you found it... On Fri, Jun 16, 2017 at 6:53 PM, Satya Marivada wrote: > Never mind. I had a different config for zookeeper on second vm which > brought a different cloud. > > On Fri, Jun 16, 2017, 8:48 PM Satya Marivada > wrote: > >>

Re: Solr Capacity Planning

2017-06-18 Thread Erick Erickson
I have no idea what Will's comment means, but I will say that at that scale you'd probably be well advised to get some professional consulting help, it'll save you a world of hassle. The basic sizing exercise is here:

Re: org.apache.lucene.index.CheckIndex throws Illegal initial capacity: -16777216

2017-06-18 Thread Erick Erickson
OK, then what do you mean by: bq: I'm trying to upgrade a Solr 4.6 index to Solr 6. The upgrade does fail with an error. ?? Exactly what steps did you follow when you saw the failure? Because is sounds like you tried to put a Solr 6 directory over a 4x index, but then you say you're aware that

Re: Indexing PDF files with Solr 6.6 while allowing highlighting matched text with context

2017-06-18 Thread Erick Erickson
1> Yes, you can use your single definition. The author identifies the "text" field as a catch-all. Somewhere in the schema there'll be a copyField directive copying (perhaps) many different fields to the "text" field. That permits simple searches against a single field rather than, say, using

Re: Issue with highlighter

2017-06-18 Thread Erick Erickson
Works perfectly for me. Let's see: > your solrconfig file, particularly the "select" handler. > the field definition you use for the content field. Be sure to include the > associated fieldType. > the results of debug=on attached to the query. > What version of Solr? Best, Erick On Sat, Jun

Re: Solr starts without error but not working

2017-06-18 Thread Nawab Zada Asad Iqbal
Ah, I found that if i remove the keystore related properties in solr.in.sh , then i am able to access the server via browser. I still need to fix and find the issue in the keys. However, solr should have shown some clear error in the logs. Thanks for your response. On Sun, Jun 18, 2017 at 3:20

Re: Solr starts without error but not working

2017-06-18 Thread Rick Leir
firewall? On 2017-06-18 01:04 AM, Nawab Zada Asad Iqbal wrote: Hi So I am deploying solr 6.5.1 using puppet to another machine (which I can ssh to) . The logs have no error but solr home page has nothing (no response from server) . Using curl also showed empty response. What could be wrong