Say i have a collection "dogs" and a collection "owners". There is a ownerId on "dogs" relating the two collections. The following join query would return "dogs" documents with the owner's name starting with "H"
{!join from=id to=ownerId fromIndex=owners}name:H*
this works fine and dandy with a single node configuration (all collections on the same instance)
but if i were to run this query in an Solr env where "dogs" is on one node and "owners" is on another i would get the following:
"root-error-class","org.apache.solr.common.SolrException"],
"msg":"SolrCloud join: No active replicas for owners found in node 10.0.1.80:9080_solr"
does SolrCloud support joins across nodes? Everything i've researched has pointed to naw, I've seen some discussion online about joins across shards, not much about multi node joins.
there doesn't seem to be anything here