remote-clusters.asciidoc 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. [[remote-clusters]]
  2. == Remote clusters
  3. You can connect a local cluster to other {es} clusters, known as _remote
  4. clusters_. Remote clusters can be located in different datacenters or
  5. geographic regions, and contain indices or data streams that can be replicated
  6. with {ccr} or searched by a local cluster using {ccs}.
  7. With <<xpack-ccr,{ccr}>>, you ingest data to an index on a remote cluster. This
  8. _leader_ index is replicated to one or more read-only _follower_ indices on your local cluster. Creating a multi-cluster architecture with {ccr} enables you to
  9. configure disaster recovery, bring data closer to your users, or establish a
  10. centralized reporting cluster to process reports locally.
  11. <<modules-cross-cluster-search,{ccs-cap}>> enables you to run a search request
  12. against one or more remote clusters. This capability provides each region
  13. with a global view of all clusters, allowing you to send a search request from
  14. a local cluster and return results from all connected remote clusters.
  15. Enabling and configuring security is important on both local and remote
  16. clusters. When connecting a local cluster to remote clusters, an {es} superuser
  17. (such as the `elastic` user) on the local cluster gains total read access to the
  18. remote clusters. To use {ccr} and {ccs} safely,
  19. <<remote-clusters-security,enable security>> on all connected clusters
  20. and configure Transport Layer Security (TLS) on at least the transport level on
  21. every node.
  22. Furthermore, a local administrator at the operating system level
  23. with sufficient access to {es} configuration files and private keys can
  24. potentially take over a remote cluster. Ensure that your security strategy
  25. includes securing local _and_ remote clusters at the operating system level.
  26. To register a remote cluster,
  27. <<remote-clusters-connect,connect the local cluster>> to nodes in the
  28. remote cluster using sniff mode (default) or proxy mode. After registering
  29. remote clusters, <<remote-clusters-privileges,configure privileges>> for {ccr}
  30. and {ccs}.
  31. [[sniff-mode]]
  32. [discrete]
  33. === Sniff mode
  34. In sniff mode, a cluster is created using a name and a list of seed nodes. When
  35. a remote cluster is registered, its cluster state is retrieved from one of the
  36. seed nodes and up to three _gateway nodes_ are selected as part of remote
  37. cluster requests. This mode requires that the gateway node's publish addresses
  38. are accessible by the local cluster.
  39. Sniff mode is the default connection mode.
  40. [[gateway-nodes-selection]]
  41. The _gateway nodes_ selection depends on the following criteria:
  42. * *version*: Remote nodes must be compatible with the cluster they are
  43. registered to:
  44. ** Any node can communicate with another node on the same
  45. major version. For example, 7.0 can talk to any 7.x node.
  46. ** Only nodes on the last minor version of a certain major version can
  47. communicate with nodes on the following major version. In the 6.x series, 6.8
  48. can communicate with any 7.x node, while 6.7 can only communicate with 7.0.
  49. ** Version compatibility is
  50. symmetric, meaning that if 6.7 can communicate with 7.0, 7.0 can also
  51. communicate with 6.7. The following table depicts version compatibility between
  52. local and remote nodes.
  53. +
  54. [%collapsible%open]
  55. .Version compatibility table
  56. ====
  57. include::remote-clusters-shared.asciidoc[tag=remote-cluster-compatibility-matrix]
  58. ====
  59. IMPORTANT: Elastic only supports {ccs} on a subset of these configurations. See
  60. <<ccs-supported-configurations>>.
  61. * *role*: By default, any non-<<master-node,master-eligible>> node can act as a
  62. gateway node. Dedicated master nodes are never selected as gateway nodes.
  63. * *attributes*: You can define the gateway nodes for a cluster by setting
  64. <<cluster-remote-node-attr,`cluster.remote.node.attr.gateway`>> to `true`.
  65. However, such nodes still have to satisfy the two above requirements.
  66. [[proxy-mode]]
  67. [discrete]
  68. === Proxy mode
  69. In proxy mode, a cluster is created using a name and a single proxy address.
  70. When you register a remote cluster, a configurable number of socket connections
  71. are opened to the proxy address. The proxy is required to route those
  72. connections to the remote cluster. Proxy mode does not require remote cluster
  73. nodes to have accessible publish addresses.
  74. The proxy mode is not the default connection mode and must be configured.
  75. Proxy mode has the same <<gateway-nodes-selection, version compatibility
  76. requirements>> as sniff mode.
  77. [%collapsible]
  78. [[proxy-mode-version-compatibility]]
  79. .Version compatibility matrix
  80. ====
  81. include::remote-clusters-shared.asciidoc[tag=remote-cluster-compatibility-matrix]
  82. ====
  83. IMPORTANT: Elastic only supports {ccs} on a subset of these configurations. See
  84. <<ccs-supported-configurations>>.
  85. include::cluster/remote-clusters-security.asciidoc[]
  86. include::cluster/remote-clusters-connect.asciidoc[]
  87. include::../../../x-pack/docs/en/security/authentication/remote-clusters-privileges.asciidoc[]
  88. include::cluster/remote-clusters-settings.asciidoc[]