You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ja...@apache.org on 2024/03/21 14:52:18 UTC

(solr) branch branch_9_4 updated: SOLR-16982 Reflect change in reference guide (#2355)

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

janhoy pushed a commit to branch branch_9_4
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9_4 by this push:
     new d4b06bcea87 SOLR-16982 Reflect change in reference guide (#2355)
d4b06bcea87 is described below

commit d4b06bcea8750f5a42b7719304b129865f4c4230
Author: Jan Høydahl <ja...@apache.org>
AuthorDate: Thu Mar 21 15:42:35 2024 +0100

    SOLR-16982 Reflect change in reference guide (#2355)
    
    (cherry picked from commit ab65dedaf7cffa11c608ba782dd8cc0ea1b2d871)
---
 .../modules/deployment-guide/pages/circuit-breakers.adoc             | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/solr/solr-ref-guide/modules/deployment-guide/pages/circuit-breakers.adoc b/solr/solr-ref-guide/modules/deployment-guide/pages/circuit-breakers.adoc
index c640395aaeb..5342d974a47 100644
--- a/solr/solr-ref-guide/modules/deployment-guide/pages/circuit-breakers.adoc
+++ b/solr/solr-ref-guide/modules/deployment-guide/pages/circuit-breakers.adoc
@@ -26,10 +26,7 @@ If circuit breakers are enabled, requests may be rejected under the condition of
 
 It is up to the client to handle this error and potentially build retry logic as this should be a transient situation.
 
-In a sharded collection, when a circuit breaker trips on one shard, the entire query will fail,
-even if the other shard requests succeed. This will multiply the failures seen by the end users.
-Setting the `shards.tolerant=true` parameter on requests can help with graceful degradation when
-circuit breaker thresholds are reached on some nodes. See the xref:deployment-guide:solrcloud-distributed-requests.adoc#shards-tolerant-parameter[`shards.tolerant` Parameter] for details.
+In a request to a sharded collection, the circuit breaker is only checked on the node handling the initial request, not for inter-node requests. It is therefore recommended to load balance client requests across Solr nodes to avoid hotspots.
 
 == Circuit Breaker Configurations
 All circuit breaker configurations are listed as independent `<circuitBreaker>` entries in `solrconfig.xml` as shown below.