Web / Apache Solr Interview questions
What is SolrCloud?
SolrCloud is Solr's distributed, fault-tolerant operating mode. It uses Apache ZooKeeper as a coordination service to track cluster state, replica locations, live nodes, and leader assignments for each shard.
Instead of manually managing master-slave replication, SolrCloud automatically distributes documents across shards, replicates each shard for redundancy, and elects a leader per shard to coordinate writes.
If a node goes down, ZooKeeper detects it and the cluster keeps serving reads and writes through the remaining replicas, giving SolrCloud built-in high availability that standalone Solr lacks.
More Related questions...