Re: How to retrieve parent documents without a nested structure (block-join)

2016-09-27 Thread shamik
the issue to Minimum match (mm) parameter. I had specified it as "mm=100%". That was preventing the query from returning any results. Once again, appreciate all your help. -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-retrieve-parent-documents-without-a-ne

Re: How to retrieve parent documents without a nested structure (block-join)

2016-09-27 Thread Alexandre Rafalovitch
ucene.472066.n3.nabble.com/How-to-retrieve-parent-documents-without-a-nested-structure-block-join-tp4297510p4298249.html > Sent from the Solr - User mailing list archive at Nabble.com.

Re: How to retrieve parent documents without a nested structure (block-join)

2016-09-27 Thread shamik
Sorry to bump this up, but can someone please explain the parsing behaviour of a join query (show above) in respect to different request handler ? -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-retrieve-parent-documents-without-a-nested-structure-block-join

Re: How to retrieve parent documents without a nested structure (block-join)

2016-09-26 Thread shamik
+(({!join from=manu_id_s to=id}text:ipod (name:gb18030 -manu_id_s:*))~2)* -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-retrieve-parent-documents-without-a-nested-structure-block-join-tp4297510p4298115.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: How to retrieve parent documents without a nested structure (block-join)

2016-09-26 Thread Alexandre Rafalovitch
an you > please point to any documentation / example for my reference ? > > Appreciate your help. > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/How-to-retrieve-parent-documents-without-a-nested-structure-block-join-tp4297510p4297951.htm

Re: How to retrieve parent documents without a nested structure (block-join)

2016-09-25 Thread shamik
? Appreciate your help. -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-retrieve-parent-documents-without-a-nested-structure-block-join-tp4297510p4297951.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: How to retrieve parent documents without a nested structure (block-join)

2016-09-25 Thread Alexandre Rafalovitch
'm only getting back id=1 with the following join query : > > *{!join from=parent_doc_id to=doc_id}title2* > > Is there a way to get the document with id=4 ? > > > > -- > View this message in context: http://lucene.472066.n3. > nabble.com/How-to-retrieve-parent-documents-without-

Re: How to retrieve parent documents without a nested structure (block-join)

2016-09-25 Thread shamik
123 4 Misc title2 I'm only getting back id=1 with the following join query : *{!join from=parent_doc_id to=doc_id}title2* Is there a way to get the document with id=4 ? -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-retrieve-parent-documents-without

Re: How to retrieve parent documents without a nested structure (block-join)

2016-09-22 Thread Alexandre Rafalovitch
Why not a traditional join? https://cwiki.apache.org/confluence/display/solr/Other+Parsers#OtherParsers-JoinQueryParser Regards, Alex. Newsletter and resources for Solr beginners and intermediates: http://www.solr-start.com/ On 23 September 2016 at 00:16, Shamik Bandopadhyay

How to retrieve parent documents without a nested structure (block-join)

2016-09-22 Thread Shamik Bandopadhyay
Hi, I have a set of documents indexed which has a pseudo parent-child relationship. Each child document has a reference to the parent document through an ID. As the documents are not available to the crawler in order, I'm not able to index them in a nested structure to support block-join.Here's