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

[1/2] lucene-solr:jira/solr-10821: SOLR-10821: Remove mention of triggers and listeners

Repository: lucene-solr
Updated Branches:
  refs/heads/jira/solr-10821 d7f7639fa -> 1fd011cce


SOLR-10821: Remove mention of triggers and listeners


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/9199fa34
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/9199fa34
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/9199fa34

Branch: refs/heads/jira/solr-10821
Commit: 9199fa3432f8c5ab4df35dbe776aeb586baa60ec
Parents: d7f7639
Author: Shalin Shekhar Mangar <sh...@apache.org>
Authored: Mon Jul 31 13:12:46 2017 +0530
Committer: Shalin Shekhar Mangar <sh...@apache.org>
Committed: Mon Jul 31 13:12:46 2017 +0530

----------------------------------------------------------------------
 solr/solr-ref-guide/src/solrcloud-autoscaling-api.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/9199fa34/solr/solr-ref-guide/src/solrcloud-autoscaling-api.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/solrcloud-autoscaling-api.adoc b/solr/solr-ref-guide/src/solrcloud-autoscaling-api.adoc
index 32cbf82..a5bf382 100644
--- a/solr/solr-ref-guide/src/solrcloud-autoscaling-api.adoc
+++ b/solr/solr-ref-guide/src/solrcloud-autoscaling-api.adoc
@@ -20,11 +20,11 @@
 // specific language governing permissions and limitations
 // under the License.
 
-The AutoScaling API can be used to read, set and remove cluster policy, preferences, triggers, listeners as well as for diagnostics on the state of the cluster.
+The AutoScaling API can be used to read, set and remove cluster policy, preferences as well as for diagnostics on the state of the cluster.
 
 == Read API
 
-The AutoScaling read API is available at `/solr/admin/autoscaling` as well as on `/v2/cluster/autoscaling` path. It returns information about the configured cluster preferences, policies, triggers and listeners.
+The AutoScaling read API is available at `/solr/admin/autoscaling` as well as on `/v2/cluster/autoscaling` path. It returns information about the configured cluster preferences, cluster policy and collection specific policies.
 
 === Diagnostics
 


[2/2] lucene-solr:jira/solr-10821: SOLR-10821: Removed host/port and only show the path information in example

Posted by sh...@apache.org.
SOLR-10821: Removed host/port and only show the path information in example


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/1fd011cc
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/1fd011cc
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/1fd011cc

Branch: refs/heads/jira/solr-10821
Commit: 1fd011cce3a97eb51597d5ca09c02ca5038c769b
Parents: 9199fa3
Author: Shalin Shekhar Mangar <sh...@apache.org>
Authored: Mon Jul 31 13:14:35 2017 +0530
Committer: Shalin Shekhar Mangar <sh...@apache.org>
Committed: Mon Jul 31 13:14:35 2017 +0530

----------------------------------------------------------------------
 solr/solr-ref-guide/src/solrcloud-autoscaling-overview.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/1fd011cc/solr/solr-ref-guide/src/solrcloud-autoscaling-overview.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/solrcloud-autoscaling-overview.adoc b/solr/solr-ref-guide/src/solrcloud-autoscaling-overview.adoc
index dac4745..d5eeccc 100644
--- a/solr/solr-ref-guide/src/solrcloud-autoscaling-overview.adoc
+++ b/solr/solr-ref-guide/src/solrcloud-autoscaling-overview.adoc
@@ -44,7 +44,7 @@ When a node, shard or collection does not satisfy the policy, we call it a *viol
 
 Sometimes a collection may need conditions in addition to those specified in the cluster policy. In such cases, we can create named policies that can be used for specific collections. Firstly, we can use the `set-policy` API to create a new policy and then specify `policy=<policy_name>` parameter to the create collection API.
 
-`http://localhost:8983/solr/admin/collections?action=CREATE&name=coll1&numShards=1&replicationFactor=2&policy=policy1`
+`/admin/collections?action=CREATE&name=coll1&numShards=1&replicationFactor=2&policy=policy1`
 
 The above create collection command will associate a policy named policy1 with the collection named coll1. Only a single policy may be associated with a collection.