Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change 
notification.

The "SolrCloud" page has been changed by Mark Miller:
http://wiki.apache.org/solr/SolrCloud?action=diff&rev1=32&rev2=33

  
http://localhost:8983/solr/collection1/select?collection=collection1_NY,collection1_NJ,collection1_CT
  }}}
  
+ == Required Config ==
+ 
+ * WIP *
+ 
+ All of the required config is already setup in the example configs shipped 
with Solr.
+ 
+ === schema.xml ===
+ 
+ You must have a _version_ field defined:
+ 
+ <field name="_version_" type="long" indexed="true" stored="true"/>
+ 
+ === solrconfig.xml ===
+ 
+ You must have an UpdateLog defined:
+ 
+ ...coming...
+ 
+ You must have a replication handler called /replication defined:
+ 
+ ...coming...
+ 
+ You must have a realtime get handler called /get defined:
+ 
+ ...coming...
+ 
+ The DistributedUpdateProcessor is part of the default update chain, but if 
you define a custom update chain you would like to use with SolrCloud, you must 
put the DistributedUpdateProcessor in that chain:
+ 
+ ...coming...
+ 
  == Re-sizing a Cluster ==
  You can control cluster size by passing the numShards when you start up the 
first SolrCore in a collection. This parameter is used to auto assign which 
shard each instance should be part of. Any SolrCores that you start after 
starting numShards instances are evenly added to each shard as replicas (as 
long as they all belong to the same collection).
  

Reply via email to