Re: streaming expressions parallel merge

2017-04-14 Thread Joel Bernstein
Yes, you can wrap the merge in a parallel expression. You'll need to specify the partitionKeys, which will be used to route documents to worker nodes. For operations like rollup and joins the partition keys ensure that the tuples with the same partition keys end up on the same worker. With the merg

streaming expressions parallel merge

2017-04-13 Thread Damien Kamerman
Hi, With solr streaming expressions is there a way to parallel merge a number of solr streams. Or a way to apply the parallel function to something like this? merge( search(collection1, ...), search(collection2, ...), ... on="id asc") ) Cheers, Damien.