How to Search Multiple SOLR Core?
In Single Solr Instance, multiple core(s) are there. No Shards, Replication and Cloud concept involved. Now how to search over multiple core in this scenario? To search across cores, you'll have to use sharding. If the schema for both cores are identical, you can just query one core and provide the shards parameter. If the schema is different, create a separate core that have a merged schema of both the target schemas, then query that core with the two separate cores as shards. Having FieldA, FieldB in core0 and FieldB, FieldC in core1 would require a schema with FieldA, FieldB, FieldC defined