You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by is...@apache.org on 2020/07/20 11:46:19 UTC

[lucene-solr] branch jira/solr-14656-master updated: SOLR-14656: Fix precommit

This is an automated email from the ASF dual-hosted git repository.

ishan pushed a commit to branch jira/solr-14656-master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/jira/solr-14656-master by this push:
     new b7aa9b3  SOLR-14656: Fix precommit
b7aa9b3 is described below

commit b7aa9b3998b46a6ea3945494ccbe4b5fd1d520c1
Author: Ishan Chattopadhyaya <is...@apache.org>
AuthorDate: Mon Jul 20 17:16:05 2020 +0530

    SOLR-14656: Fix precommit
---
 solr/solr-ref-guide/src/running-solr-on-hdfs.adoc | 39 -----------------------
 1 file changed, 39 deletions(-)

diff --git a/solr/solr-ref-guide/src/running-solr-on-hdfs.adoc b/solr/solr-ref-guide/src/running-solr-on-hdfs.adoc
index e74b7a5..919a1fb 100644
--- a/solr/solr-ref-guide/src/running-solr-on-hdfs.adoc
+++ b/solr/solr-ref-guide/src/running-solr-on-hdfs.adoc
@@ -178,42 +178,3 @@ If using Kerberos, you will need to add the three Kerberos related properties to
 </directoryFactory>
 ----
 
-// In Solr 8, this should be removed entirely;
-// it's here now only for back-compat for existing users
-
-== Automatically Add Replicas in SolrCloud
-
-The ability to automatically add new replicas when the Overseer notices that a shard has gone down was previously only available to users running Solr in HDFS, but it is now available to all users via Solr's autoscaling framework. See the section <<solrcloud-autoscaling-auto-add-replicas.adoc#the-autoaddreplicas-parameter,SolrCloud Autoscaling Automatically Adding Replicas>> for details on how to enable and disable this feature.
-
-[WARNING]
-====
-The ability to enable or disable the autoAddReplicas feature with cluster properties has been deprecated and will be removed in a future version. All users of this feature who have previously used that approach are encouraged to change their configurations to use the autoscaling framework to ensure continued operation of this feature in their Solr installations.
-
-For users using this feature with the deprecated configuration, you can temporarily disable it cluster-wide by setting the cluster property `autoAddReplicas` to `false`, as in these examples:
-
-.V1 API
-[source,bash]
-----
-http://localhost:8983/solr/admin/collections?action=CLUSTERPROP&name=autoAddReplicas&val=false
-----
-
-.V2 API
-[source,bash]
-----
-curl -X POST -H 'Content-type: application/json' -d '{"set-property": {"name":"autoAddReplicas", "val":false}}' http://localhost:8983/api/cluster
-----
-
-Re-enable the feature by unsetting the `autoAddReplicas` cluster property. When no `val` parameter is provided, the cluster property is unset:
-
-.V1 API
-[source,bash]
-----
-http://localhost:8983/solr/admin/collections?action=CLUSTERPROP&name=autoAddReplicas
-----
-
-.V2 API
-[source,bash]
-----
-curl -X POST -H 'Content-type: application/json' -d '{"set-property": {"name":"autoAddReplicas"}}' http://localhost:8983/api/cluster
-----
-====