index.asciidoc 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. [role="xpack"]
  2. [[xpack-ccr]]
  3. == {ccr-cap}
  4. With {ccr}, you can replicate indices across clusters to:
  5. * Continue handling search requests in the event of a datacenter outage
  6. * Prevent search volume from impacting indexing throughput
  7. * Reduce search latency by processing search requests in geo-proximity to the
  8. user
  9. {ccr-cap} uses an active-passive model. You index to a _leader_ index, and the
  10. data is replicated to one or more read-only _follower_ indices. Before you can add a follower index to a cluster, you must configure the _remote cluster_ that contains the leader index.
  11. When the leader index receives writes, the follower indices pull changes from
  12. the leader index on the remote cluster. You can manually create follower
  13. indices, or configure auto-follow patterns to automatically create follower
  14. indices for new time series indices.
  15. You configure {ccr} clusters in a uni-directional or bi-directional setup:
  16. * In a uni-directional configuration, one cluster contains only
  17. leader indices, and the other cluster contains only follower indices.
  18. * In a bi-directional configuration, each cluster contains both leader and
  19. follower indices.
  20. In a uni-directional configuration, the cluster containing follower indices
  21. must be running **the same or newer** version of {es} as the remote cluster.
  22. If newer, the versions must also be compatible as outlined in the following matrix.
  23. [%collapsible]
  24. [[ccr-version-compatibility]]
  25. .Version compatibility matrix
  26. ====
  27. include::../modules/remote-clusters-shared.asciidoc[tag=remote-cluster-compatibility-matrix]
  28. ====
  29. [discrete]
  30. [[ccr-multi-cluster-architectures]]
  31. === Multi-cluster architectures
  32. Use {ccr} to construct several multi-cluster architectures within the Elastic
  33. Stack:
  34. * <<ccr-disaster-recovery,Disaster recovery>> in case a primary cluster fails,
  35. with a secondary cluster serving as a hot backup
  36. * <<ccr-data-locality,Data locality>> to maintain multiple copies of the
  37. dataset close to the application servers (and users), and reduce costly latency
  38. * <<ccr-centralized-reporting,Centralized reporting>> for minimizing network
  39. traffic and latency in querying multiple geo-distributed {es} clusters, or for
  40. preventing search load from interfering with indexing by offloading search to a
  41. secondary cluster
  42. Watch the
  43. https://www.elastic.co/webinars/replicate-elasticsearch-data-with-cross-cluster-replication-ccr[{ccr} webinar] to learn more about the following use cases.
  44. Then, <<ccr-getting-started-tutorial,set up {ccr}>> on your local machine and work
  45. through the demo from the webinar.
  46. [discrete]
  47. [[ccr-disaster-recovery]]
  48. ==== Disaster recovery and high availability
  49. Disaster recovery provides your mission-critical applications with the
  50. tolerance to withstand datacenter or region outages. This use case is the
  51. most common deployment of {ccr}. You can configure clusters in different
  52. architectures to support disaster recovery and high availability:
  53. * <<ccr-single-datacenter-recovery>>
  54. * <<ccr-multiple-datacenter-recovery>>
  55. * <<ccr-chained-replication>>
  56. * <<ccr-bi-directional-replication>>
  57. [discrete]
  58. [[ccr-single-datacenter-recovery]]
  59. ===== Single disaster recovery datacenter
  60. In this configuration, data is replicated from the production datacenter to the
  61. disaster recovery datacenter. Because the follower indices replicate the leader
  62. index, your application can use the disaster recovery datacenter if the
  63. production datacenter is unavailable.
  64. image::images/ccr-arch-disaster-recovery.png[Production datacenter that replicates data to a disaster recovery datacenter]
  65. [discrete]
  66. [[ccr-multiple-datacenter-recovery]]
  67. ===== Multiple disaster recovery datacenters
  68. You can replicate data from one datacenter to multiple datacenters. This
  69. configuration provides both disaster recovery and high availability, ensuring
  70. that data is replicated in two datacenters if the primary datacenter is down
  71. or unavailable.
  72. In the following diagram, data from Datacenter A is replicated to
  73. Datacenter B and Datacenter C, which both have a read-only copy of the leader
  74. index from Datacenter A.
  75. image::images/ccr-arch-multiple-dcs.png[Production datacenter that replicates data to two other datacenters]
  76. [discrete]
  77. [[ccr-chained-replication]]
  78. ===== Chained replication
  79. You can replicate data across multiple datacenters to form a replication
  80. chain. In the following diagram, Datacenter A contains the leader index.
  81. Datacenter B replicates data from Datacenter A, and Datacenter C replicates
  82. from the follower indices in Datacenter B. The connection between these
  83. datacenters forms a chained replication pattern.
  84. image::images/ccr-arch-chain-dcs.png[Three datacenters connected to form a replication chain]
  85. [discrete]
  86. [[ccr-bi-directional-replication]]
  87. ===== Bi-directional replication
  88. In a https://www.elastic.co/blog/bi-directional-replication-with-elasticsearch-cross-cluster-replication-ccr[bi-directional replication] setup, all clusters have access to view
  89. all data, and all clusters have an index to write to without manually
  90. implementing failover. Applications can write to the local index within each
  91. datacenter, and read across multiple indices for a global view of all
  92. information.
  93. This configuration requires no manual intervention when a cluster or datacenter
  94. is unavailable. In the following diagram, if Datacenter A is unavailable, you can continue using Datacenter B without manual failover. When Datacenter A
  95. comes online, replication resumes between the clusters.
  96. image::images/ccr-arch-bi-directional.png[Bi-directional configuration where each cluster contains both a leader index and follower indices]
  97. This configuration is particularly useful for index-only workloads, where no updates
  98. to document values occur. In this configuration, documents indexed by {es} are
  99. immutable. Clients are located in each datacenter alongside the {es}
  100. cluster, and do not communicate with clusters in different datacenters.
  101. [discrete]
  102. [[ccr-data-locality]]
  103. ==== Data locality
  104. Bringing data closer to your users or application server can reduce latency
  105. and response time. This methodology also applies when replicating data in {es}.
  106. For example, you can replicate a product catalog or reference dataset to 20 or
  107. more datacenters around the world to minimize the distance between the data and
  108. the application server.
  109. In the following diagram, data is replicated from one datacenter to three
  110. additional datacenters, each in their own region. The central datacenter
  111. contains the leader index, and the additional datacenters contain follower
  112. indices that replicate data in that particular region. This configuration
  113. puts data closer to the application accessing it.
  114. image::images/ccr-arch-data-locality.png[A centralized datacenter replicated across three other datacenters, each in their own region]
  115. [discrete]
  116. [[ccr-centralized-reporting]]
  117. ==== Centralized reporting
  118. Using a centralized reporting cluster is useful when querying across a large
  119. network is inefficient. In this configuration, you replicate data from many
  120. smaller clusters to the centralized reporting cluster.
  121. For example, a large global bank might have 100 {es} clusters around the world
  122. that are distributed across different regions for each bank branch. Using
  123. {ccr}, the bank can replicate events from all 100 banks to a central cluster to
  124. analyze and aggregate events locally for reporting. Rather than maintaining a
  125. mirrored cluster, the bank can use {ccr} to replicate specific indices.
  126. In the following diagram, data from three datacenters in different regions is
  127. replicated to a centralized reporting cluster. This configuration enables you
  128. to copy data from regional hubs to a central cluster, where you can run all
  129. reports locally.
  130. image::images/ccr-arch-central-reporting.png[Three clusters in different regions sending data to a centralized reporting cluster for analysis]
  131. [discrete]
  132. [[ccr-replication-mechanics]]
  133. === Replication mechanics
  134. Although you <<ccr-getting-started-tutorial,set up {ccr}>> at the index level, {es}
  135. achieves replication at the shard level. When a follower index is created,
  136. each shard in that index pulls changes from its corresponding shard in the
  137. leader index, which means that a follower index has the same number of
  138. shards as its leader index. All operations on the leader are replicated by the
  139. follower, such as operations to create, update, or delete a document.
  140. These requests can be served from any copy of the leader shard (primary or
  141. replica).
  142. When a follower shard sends a read request, the leader shard responds with
  143. any new operations, limited by the read parameters that you establish when
  144. configuring the follower index. If no new operations are available, the
  145. leader shard waits up to the configured timeout for new operations. If the
  146. timeout elapses, the leader shard responds to the follower shard that there
  147. are no new operations. The follower shard updates shard statistics and
  148. immediately sends another read request to the leader shard. This
  149. communication model ensures that network connections between the remote
  150. cluster and the local cluster are continually in use, avoiding forceful
  151. termination by an external source such as a firewall.
  152. If a read request fails, the cause of the failure is inspected. If the
  153. cause of the failure is deemed to be recoverable (such as a network
  154. failure), the follower shard enters into a retry loop. Otherwise, the
  155. follower shard pauses
  156. <<ccr-pause-replication,until you resume it>>.
  157. [discrete]
  158. [[ccr-update-leader-index]]
  159. ==== Processing updates
  160. You can't manually modify a follower index's mappings or aliases. To make
  161. changes, you must update the leader index. Because they are read-only, follower
  162. indices reject writes in all configurations.
  163. For example, you index a document named `doc_1` in Datacenter A, which
  164. replicates to Datacenter B. If a client connects to Datacenter B and attempts
  165. to update `doc_1`, the request fails. To update `doc_1`, the client must
  166. connect to Datacenter A and update the document in the leader index.
  167. When a follower shard receives operations from the leader shard, it places
  168. those operations in a write buffer. The follower shard submits bulk write
  169. requests using operations from the write buffer. If the write buffer exceeds
  170. its configured limits, no additional read requests are sent. This configuration
  171. provides a back-pressure against read requests, allowing the follower shard
  172. to resume sending read requests when the write buffer is no longer full.
  173. To manage how operations are replicated from the leader index, you can
  174. configure settings when
  175. <<ccr-getting-started-follower-index,creating the follower index>>.
  176. The follower index automatically retrieves some updates applied to the leader
  177. index, while other updates are retrieved as needed:
  178. [cols="3"]
  179. |===
  180. h| Update type h| Automatic h| As needed
  181. | Alias | {yes-icon} | {no-icon}
  182. | Mapping | {no-icon} | {yes-icon}
  183. | Settings | {no-icon} | {yes-icon}
  184. |===
  185. For example, changing the number of replicas on the leader index is not
  186. replicated by the follower index, so that setting might not be retrieved.
  187. If you apply a non-dynamic settings change to the leader index that is
  188. needed by the follower index, the follower index closes itself, applies the
  189. settings update, and then re-opens itself. The follower index is unavailable
  190. for reads and cannot replicate writes during this cycle.
  191. [discrete]
  192. [[ccr-remote-recovery]]
  193. === Initializing followers using remote recovery
  194. When you create a follower index, you cannot use it until it is fully
  195. initialized. The _remote recovery_ process builds a new copy of a shard on a
  196. follower node by copying data from the primary shard in the leader cluster.
  197. {es} uses this remote recovery process to bootstrap a follower index using the
  198. data from the leader index. This process provides the follower with a copy of
  199. the current state of the leader index, even if a complete history of changes
  200. is not available on the leader due to Lucene segment merging.
  201. Remote recovery is a network intensive process that transfers all of the Lucene
  202. segment files from the leader cluster to the follower cluster. The follower
  203. requests that a recovery session be initiated on the primary shard in the
  204. leader cluster. The follower then requests file chunks concurrently from the
  205. leader. By default, the process concurrently requests five 1MB file
  206. chunks. This default behavior is designed to support leader and follower
  207. clusters with high network latency between them.
  208. TIP: You can modify dynamic <<ccr-recovery-settings,remote recovery settings>>
  209. to rate-limit the transmitted data and manage the resources consumed by remote
  210. recoveries.
  211. Use the <<cat-recovery,recovery API>> on the cluster containing the follower
  212. index to obtain information about an in-progress remote recovery. Because {es}
  213. implements remote recoveries using the
  214. <<snapshot-restore,snapshot and restore>> infrastructure, running remote
  215. recoveries are labelled as type `snapshot` in the recovery API.
  216. [discrete]
  217. [[ccr-leader-requirements]]
  218. === Replicating a leader requires soft deletes
  219. {ccr-cap} works by replaying the history of individual write
  220. operations that were performed on the shards of the leader index. {es} needs to
  221. retain the
  222. <<index-modules-history-retention,history of these operations>> on the leader
  223. shards so that they can be pulled by the follower shard tasks. The underlying
  224. mechanism used to retain these operations is _soft deletes_.
  225. A soft delete occurs whenever an existing document is deleted or updated. By
  226. retaining these soft deletes up to configurable limits, the history of
  227. operations can be retained on the leader shards and made available to the
  228. follower shard tasks as it replays the history of operations.
  229. The <<ccr-index-soft-deletes-retention-period,`index.soft_deletes.retention_lease.period`>>
  230. setting defines the maximum time to retain a shard history retention lease
  231. before it is considered expired. This setting determines how long the cluster
  232. containing your follower index can be offline, which is 12 hours by default. If
  233. a shard copy recovers after its retention lease expires, but the missing
  234. operations are still available on the leader index, then {es} will establish a
  235. new lease and copy the missing operations. However {es} does not guarantee to
  236. retain unleased operations, so it is also possible that some of the missing
  237. operations have been discarded by the leader and are now completely
  238. unavailable. If this happens then the follower cannot recover automatically so
  239. you must <<ccr-recreate-follower-index,recreate it>>.
  240. Soft deletes must be enabled for indices that you want to use as leader
  241. indices. Soft deletes are enabled by default on new indices created on
  242. or after {es} 7.0.0.
  243. // tag::ccr-existing-indices-tag[]
  244. IMPORTANT: {ccr-cap} cannot be used on existing indices created using {es}
  245. 7.0.0 or earlier, where soft deletes are disabled. You must
  246. <<docs-reindex,reindex>> your data into a new index with soft deletes
  247. enabled.
  248. // end::ccr-existing-indices-tag[]
  249. [discrete]
  250. [[ccr-learn-more]]
  251. === Use {ccr}
  252. This following sections provide more information about how to configure
  253. and use {ccr}:
  254. * <<ccr-getting-started-tutorial>>
  255. * <<ccr-managing>>
  256. * <<ccr-auto-follow>>
  257. * <<ccr-upgrading>>
  258. include::getting-started.asciidoc[]
  259. include::managing.asciidoc[]
  260. include::auto-follow.asciidoc[]
  261. include::upgrading.asciidoc[]