Amrit
Amrit

Reputation: 443

Join queries for multiples SOLR cores not working in SOLR 4.3

As per the threads Is Solr 4.0 capable of using 'join" for multiple core?

and https://issues.apache.org/jira/browse/SOLR-2272

SOLR 4.x supports join across multiple cores. We tried it and its not giving any response.

Details are as follows:

Two cores:

  1. proposition { stockitemid , name }
  2. stocks { mc , counts }

Here "mc" references "stockitemid"

My query:

{!join from=mc to=stockitemid fromIndex=stocks}enter image description here

Upvotes: 0

Views: 220

Answers (1)

suneel oleti
suneel oleti

Reputation: 170

Try using the below code :

{!join from=mc to=stockitemid fromIndex=stocks}*:*

Upvotes: 2

Related Questions