Re: Stream InnerJoin to merge hierarchal data

2020-02-07 Thread Joel Bernstein
This is working as designed I believe. I issue is that innerJoin relies on the sort order of the streams in order to perform streaming merge join. The first join works because the sorts line up on childId. innerJoin(search(collection_name, q="type:grandchild",

Stream InnerJoin to merge hierarchal data

2020-02-07 Thread sambasivarao giddaluri
Hi All, Our dataset is of 50M records and we are using complex graph query and now trying to do innerjoin on the records and facing the below issue . This is a critical issue . Parent { parentId:"1" parent.name:"foo" type:"parent" } Child { childId:"2" parentId:"1" child.name:"bar" type:"child"