Re: Parent child relationship, where children aren't nested but separate (like elasticsearch)

2016-11-17 Thread Dorian Hoxha
It's not mentioned on that page, but I'm assuming the join should work on solrcloud when joining the same collection with the same routing (example: users and user_events both routed by user_id (and joining on user_id)) On Thu, Nov 17, 2016 at 10:23 AM, Alexandre Rafalovitch

Re: Parent child relationship, where children aren't nested but separate (like elasticsearch)

2016-11-17 Thread Alexandre Rafalovitch
You want just the usual join (not the block-join). That's the way it was before nested documents became supported. https://cwiki.apache.org/confluence/display/solr/Other+Parsers#OtherParsers-JoinQueryParser Also, Elasticsearch - as far as I remember - stores the original document structure

Parent child relationship, where children aren't nested but separate (like elasticsearch)

2016-11-16 Thread Dorian Hoxha
Hi, I'm not finding a way to support parent-child like es does (using blockjoin)? I've seen some blogs with having children as nested inside the parent-document, but I want to freely crud childs/parents as

Does updating a child document destroy the parent - child relationship

2014-06-24 Thread Vinay B,
When I edit a child document, a block join query for the parent no longer returns any hits. I thought I read that this was the way things worked but needed to know for sure. If so, is there any other way to achieve this functionality (I can deal with creating the child doc with the parent, but

Re: Does updating a child document destroy the parent - child relationship

2014-06-24 Thread Jack Krupansky
, this limitation does not appear to be documented in the Solr ref guide. -- Jack Krupansky -Original Message- From: Vinay B, Sent: Tuesday, June 24, 2014 10:40 PM To: solr-user Subject: Does updating a child document destroy the parent - child relationship When I edit a child document

Re: Parent-Child relationship

2012-05-04 Thread tamanjit.bin...@yahoo.co.in
.nabble.com/Parent-Child-relationship-tp3958259p3961509.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Parent-Child relationship

2012-05-04 Thread Erick Erickson
to have joins between docs of different cores. Am I correct here? If yes, is there a possibility of having joins across cores anytime soon? -- View this message in context: http://lucene.472066.n3.nabble.com/Parent-Child-relationship-tp3958259p3961509.html Sent from the Solr - User mailing list

Parent-Child relationship

2012-05-03 Thread tamanjit.bin...@yahoo.co.in
Hi, I just wanted to get some information about whether Parent-Child relationship between documents which Lucene has been talking about has been implemented in Solr or not? I know join patch is available, would that be the only solution? And another question, as and when this will be possible

Re: Parent-Child relationship

2012-05-03 Thread Mikhail Khludnev
information about whether Parent-Child relationship between documents which Lucene has been talking about has been implemented in Solr or not? I know join patch is available, would that be the only solution? And another question, as and when this will be possible (if its not done already), would

Re: Parent-Child relationship

2012-05-03 Thread Erick Erickson
or defining such relations at index time) would be available across different cores? -- View this message in context: http://lucene.472066.n3.nabble.com/Parent-Child-relationship-tp3958259.html Sent from the Solr - User mailing list archive at Nabble.com. -- Sincerely yours Mikhail

Re: Parent-Child relationship

2012-05-03 Thread Mikhail Khludnev
/searching-relational-content-with.html https://issues.apache.org/jira/browse/SOLR-3076 On Thu, May 3, 2012 at 10:17 AM, tamanjit.bin...@yahoo.co.in tamanjit.bin...@yahoo.co.in wrote: Hi, I just wanted to get some information about whether Parent-Child relationship between documents

Re: Parent-Child relationship

2012-05-03 Thread Erick Erickson
/SOLR-3076 On Thu, May 3, 2012 at 10:17 AM, tamanjit.bin...@yahoo.co.in tamanjit.bin...@yahoo.co.in wrote: Hi, I just wanted to get some information about whether Parent-Child relationship between documents which Lucene has been talking about has been implemented in Solr or not? I

Special Parent / Child relationship - advice / observations welcome on how to approach this

2010-11-23 Thread Bob Sandiford
Hi, Long post - sorry... I have a relatively special case of a Parent / Child relationship that I'm trying to model. I'm currently using Solr 1.4.1 and Lucene 2.9.3 For example, my Parent documents represent Title Information (e.g. bibliographic information), and each Parent document can

RE: Special Parent / Child relationship - advice / observations welcome on how to approach this

2010-11-23 Thread Jonathan Rochkind
of the gap between what solr is good at and what an rdbms is good at. From: Bob Sandiford [bob.sandif...@sirsidynix.com] Sent: Tuesday, November 23, 2010 7:26 PM To: solr-user@lucene.apache.org Subject: Special Parent / Child relationship - advice

Best wasy to solve Parent-Child relationship without Denormalizing?

2010-01-19 Thread karthi_1986
] Product name Product category Product description Product rating So, I'm expecting a result where all cosmetic products created by pharmaceutical companies are returned. The problem is, I've read in posts a year old that this parent-child relationship can only be solved

Re: Best wasy to solve Parent-Child relationship without Denormalizing?

2010-01-19 Thread Renaud Delbru
a year old that this parent-child relationship can only be solved by indexing the denormalized data together. However, I'm dealing with 10,000,000 companies with possibly 10 products each, so my data requirements are going to be HUGGEE!! Is there a new feature in Solr which can handle this for me

Re: storing multiple type of records (Parent - Child Relationship)

2009-10-15 Thread ashokcz
thanks Avlesh for your reply. ya even i had that idea . but the problem is project data could change very rapdily. so in that case i will end up changing the associated user details . say i have just 100 Project records but 1,00,000 user records . then changing one project record means

storing multiple type of records (Parent - Child Relationship)

2009-10-14 Thread ashokcz
Hi All , I have a specific requirement of storing multiple type of records. but dont know how to do it . First let me tell the requirement. I have a table called user table and a user can be mapped to multiple projects. User table details are User Name , User Id , address , and other details . I

Re: How to query a parent child relationship returning result set of parents?

2006-12-12 Thread Chris Hostetter
: Given this type of layout, how would I go about querying and returning : a list of blogs which contain text in either the blog content or any : of the comments' content? a big issue is how timely do your comments have to show up in the index ... for some people an acceptible tradeoff is that

Re: How to query a parent child relationship returning result set of parents?

2006-12-12 Thread Eric Van Dewoestine
You can do pretty much anything you want in a custom request handler, but i must admit that off the top of my head i can't think of any elegant way to solve your problem. Most people i know are happy with option #1 :) -Hoss I appreciate the input Hoss. Unfortunately, I don't see option 1

How to query a parent child relationship returning result set of parents?

2006-12-11 Thread Eric Van Dewoestine
We are currently using solr to index various types of content in our system, several of which allow users to comment on. What we would like to do is issue a query on the top level content which also searches the attached comments but only returns unique top level documents as results, while