Reputation: 69
I have two collections:
CollectionOne
with two shards (shard1, shard2)
have id
, name
, and Address
fields
CollectionTwo
with shards (shard1,shard2)
have c_id
, code
, and State
fields.
I want the result from two collection on id=c_id
base using join
.
Please provide me full help! I am using Solr
version 6.1.0.
Upvotes: 1
Views: 1340
Reputation: 644
https://wiki.apache.org/solr/DistributedSearch - Distributed Search doesn't support join. So SolrCloud can do join only when index is not splited to shards.
Upvotes: 1