On 2/24/2015 1:21 PM, Benson Margulies wrote: > On Tue, Feb 24, 2015 at 1:30 PM, Michael Della Bitta > <michael.della.bi...@appinions.com> wrote: >> Benson: >> >> Are you trying to run independent invocations of Solr for every node? >> Otherwise, you'd just want to create a 8 shard collection with >> maxShardsPerNode set to 8 (or more I guess). > Michael Della Bitta, > > I don't want to run multiple invocations. I just want to exploit > hardware cores with shards. Can you point me at doc for the process > you are referencing here? I confess to some ongoing confusion between > cores and collections.
SolrCloud is designed around the idea that each machine runs one copy of Solr. Running multiple instances of Solr on one machine is usually a waste of resources, and can lead to problems with SolrCloud high availability (redundancy). Here's a simple way of thinking about the terminology in SolrCloud: Collections are made up of one or more shards. Shards have one or more replicas. Each replica is a core. An important detail: For each shard, one of the replicas is elected leader. SolrCloud gets rid of the master and slave concepts. Thanks, Shawn