On 5/15/2013 8:49 AM, vrparekh wrote: > I have two different solr servers. Both server has different schema. > > Is it possible to shard these two solr server? > > Or is there any other way to combine/merge results of two different solr > servers?
In general, this won't work. If your two schemas use the same field name with the same data type for the uniqueKey, and the fields that you use for searching exist in both schemas with the same data type, you MIGHT be able to get results, but there's a good chance that you'll run into some problem that you won't be able to fix without changing your design. For best results, you'll want to do one of two things: Either merge your schemas and index both document types into one index (up to you whether it's sharded or not), or do separate searches in your client and combine the results there. How to do either of these options is highly dependent on your data and your overall design, so you may need help from a professional rather than a volunteer mailing list. Thanks, Shawn
