Web / Apache Solr Interview questions
What is a Solr collection?
A collection is the logical unit of indexing and search in SolrCloud, Solr's distributed mode. Unlike a core, a collection can span multiple servers: its data is split into shards, and each shard can have multiple replicas for redundancy.
All nodes belonging to a collection share a single configuration set stored in ZooKeeper, so schema and solrconfig changes apply cluster-wide instead of per node.
From the client's point of view, a collection looks like one searchable index even though it may physically be spread across many machines.
More Related questions...