mirror of https://github.com/apache/lucene.git
Ref Guide: fix "cloud mode" to "SolrCloud mode"
This commit is contained in:
parent
e1959956c5
commit
52a9241232
|
@ -29,7 +29,7 @@ In this guide we are going to:
|
|||
. Install, configure and start Solr on newly launched EC2 instances
|
||||
* Install system prerequisites: Java 1.8 and later
|
||||
* Download latest version of Solr
|
||||
* Start the Solr nodes in cloud mode
|
||||
* Start the Solr nodes in SolrCloud mode
|
||||
. Create a collection, index documents and query the system
|
||||
* Create collection with multiple shards and replicas
|
||||
* Index documents to the newly created collection
|
||||
|
|
|
@ -35,7 +35,7 @@ This tutorial assumes that you're already familiar with the basics of using Solr
|
|||
|
||||
=== Interactive Startup
|
||||
|
||||
The `bin/solr` script makes it easy to get started with SolrCloud as it walks you through the process of launching Solr nodes in cloud mode and adding a collection. To get started, simply do:
|
||||
The `bin/solr` script makes it easy to get started with SolrCloud as it walks you through the process of launching Solr nodes in SolrCloud mode and adding a collection. To get started, simply do:
|
||||
|
||||
[source,bash]
|
||||
----
|
||||
|
|
|
@ -128,7 +128,7 @@ Threads:: Return info on all JVM threads.
|
|||
v2: `api/node/threads` |{solr-javadocs}/solr-core/org/apache/solr/handler/admin/ThreadDumpHandler.html[ThreadDumpHandler] |`_ADMIN_THREADS`
|
||||
|===
|
||||
|
||||
Health:: Reporting the health of the node (_available only in Solrcloud mode_)
|
||||
Health:: Reporting the health of the node (_available only in SolrCloud mode_)
|
||||
+
|
||||
[cols="3*.",frame=none,grid=cols,options="header"]
|
||||
|===
|
||||
|
|
|
@ -154,7 +154,7 @@ bin/solr -e techproducts
|
|||
Currently, the available examples you can run are: techproducts, dih, schemaless, and cloud. See the section <<solr-control-script-reference.adoc#running-with-example-configurations,Running with Example Configurations>> for details on each example.
|
||||
|
||||
.Getting Started with SolrCloud
|
||||
NOTE: Running the `cloud` example starts Solr in <<solrcloud.adoc#solrcloud,SolrCloud>> mode. For more information on starting Solr in cloud mode, see the section <<getting-started-with-solrcloud.adoc#getting-started-with-solrcloud,Getting Started with SolrCloud>>.
|
||||
NOTE: Running the `cloud` example starts Solr in <<solrcloud.adoc#solrcloud,SolrCloud>> mode. For more information on starting Solr in SolrCloud mode, see the section <<getting-started-with-solrcloud.adoc#getting-started-with-solrcloud,Getting Started with SolrCloud>>.
|
||||
|
||||
=== Check if Solr is Running
|
||||
|
||||
|
|
|
@ -174,7 +174,7 @@ If you specify a ZooKeeper connection string, such as `-z 192.168.1.4:2181`, the
|
|||
|
||||
NOTE: If you have defined `ZK_HOST` in `solr.in.sh`/`solr.in.cmd` (see <<setting-up-an-external-zookeeper-ensemble#updating-solr-s-include-files,instructions>>) you can omit `-z <zk host string>` from all `bin/solr` commands.
|
||||
|
||||
When starting Solr in cloud mode, if you neither define `ZK_HOST` in `solr.in.sh`/`solr.in.cmd` nor specify the `-z` option, then Solr will launch an embedded ZooKeeper server listening on the Solr port + 1000, i.e., if Solr is running on port 8983, then the embedded ZooKeeper will be listening on port 9983.
|
||||
When starting Solr in SolrCloud mode, if you do not define `ZK_HOST` in `solr.in.sh`/`solr.in.cmd` nor specify the `-z` option, then Solr will launch an embedded ZooKeeper server listening on the Solr port + 1000, i.e., if Solr is running on port 8983, then the embedded ZooKeeper will be listening on port 9983.
|
||||
|
||||
[IMPORTANT]
|
||||
====
|
||||
|
|
Loading…
Reference in New Issue