You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ho...@apache.org on 2021/05/25 18:44:34 UTC

[lucene-solr] branch branch_8x updated: SOLR-14702: Fix ref-guide images to use leader-follower terms. (#149)

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

houston pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 4ff5b21  SOLR-14702: Fix ref-guide images to use leader-follower terms. (#149)
4ff5b21 is described below

commit 4ff5b21a59d191b6aeda7b65168330844f7e3fab
Author: Houston Putman <ho...@apache.org>
AuthorDate: Tue May 25 14:38:40 2021 -0400

    SOLR-14702: Fix ref-guide images to use leader-follower terms. (#149)
---
 .../src/combining-distribution-and-replication.adoc     |   2 +-
 .../distributed-replication.png                         | Bin 0 -> 38896 bytes
 .../worddav4101c16174820e932b44baa22abcfcd1.png         | Bin 54328 -> 0 bytes
 .../index-replication/leader-follower-replication.png   | Bin 0 -> 18224 bytes
 .../worddav2b7e14725d898b4104cdd9c502fc77cd.png         | Bin 26388 -> 0 bytes
 solr/solr-ref-guide/src/index-replication.adoc          |   2 +-
 6 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/solr-ref-guide/src/combining-distribution-and-replication.adoc b/solr/solr-ref-guide/src/combining-distribution-and-replication.adoc
index 0c5e3c3..a45e59f 100644
--- a/solr/solr-ref-guide/src/combining-distribution-and-replication.adoc
+++ b/solr/solr-ref-guide/src/combining-distribution-and-replication.adoc
@@ -23,7 +23,7 @@ The idea is to combine distributed search with replication. As shown in the figu
 Query requests should be load balanced across each of the shard followers. This gives you both increased query handling capacity and fail-over backup if a server goes down.
 
 .A Solr configuration combining both replication and leader-follower distribution.
-image::images/combining-distribution-and-replication/worddav4101c16174820e932b44baa22abcfcd1.png[image,width=312,height=344]
+image::images/combining-distribution-and-replication/distributed-replication.png[image,width=312,height=344]
 
 
 None of the leader shards in this configuration know about each other. You index to each leader, the index is replicated to each follower, and then searches are distributed across the followers, using one follower from each leader/follower shard.
diff --git a/solr/solr-ref-guide/src/images/combining-distribution-and-replication/distributed-replication.png b/solr/solr-ref-guide/src/images/combining-distribution-and-replication/distributed-replication.png
new file mode 100644
index 0000000..49af2a6
Binary files /dev/null and b/solr/solr-ref-guide/src/images/combining-distribution-and-replication/distributed-replication.png differ
diff --git a/solr/solr-ref-guide/src/images/combining-distribution-and-replication/worddav4101c16174820e932b44baa22abcfcd1.png b/solr/solr-ref-guide/src/images/combining-distribution-and-replication/worddav4101c16174820e932b44baa22abcfcd1.png
deleted file mode 100644
index f0e4d89..0000000
Binary files a/solr/solr-ref-guide/src/images/combining-distribution-and-replication/worddav4101c16174820e932b44baa22abcfcd1.png and /dev/null differ
diff --git a/solr/solr-ref-guide/src/images/index-replication/leader-follower-replication.png b/solr/solr-ref-guide/src/images/index-replication/leader-follower-replication.png
new file mode 100644
index 0000000..f38ada5
Binary files /dev/null and b/solr/solr-ref-guide/src/images/index-replication/leader-follower-replication.png differ
diff --git a/solr/solr-ref-guide/src/images/index-replication/worddav2b7e14725d898b4104cdd9c502fc77cd.png b/solr/solr-ref-guide/src/images/index-replication/worddav2b7e14725d898b4104cdd9c502fc77cd.png
deleted file mode 100644
index e635aad..0000000
Binary files a/solr/solr-ref-guide/src/images/index-replication/worddav2b7e14725d898b4104cdd9c502fc77cd.png and /dev/null differ
diff --git a/solr/solr-ref-guide/src/index-replication.adoc b/solr/solr-ref-guide/src/index-replication.adoc
index c0a301b..363f506 100644
--- a/solr/solr-ref-guide/src/index-replication.adoc
+++ b/solr/solr-ref-guide/src/index-replication.adoc
@@ -21,7 +21,7 @@ Index Replication distributes complete copies of a leader index to one or more f
 The figure below shows a Solr configuration using index replication. The leader server's index is replicated on the followers.
 
 .A Solr index can be replicated across multiple follower servers, which then process requests.
-image::images/index-replication/worddav2b7e14725d898b4104cdd9c502fc77cd.png[image,width=159,height=235]
+image::images/index-replication/leader-follower-replication.png[image,width=203,height=235]
 
 
 == Index Replication in Solr