kibana/x-pack/plugins/cross_cluster_replication
2020-06-20 21:05:09 +02:00
..
common [New Platform Migration]: Management - Implement NP API (#66781) 2020-06-03 18:55:06 +03:00
public Bump jest related packages (#58095) 2020-06-20 21:05:09 +02:00
server HttpService: duplicate some APIs from setup to start and clean mocks. (#69021) 2020-06-18 15:55:47 +02:00
kibana.json Move CCR out of legacy (#62890) 2020-04-22 07:15:25 -07:00
README.md Add steps for quickly testing to the READMEs of ILM, Rollup, and CCR. (#67213) 2020-05-26 15:26:01 -07:00

Cross-Cluster Replication

Quick steps for testing cross-cluster replication

You can run a local cluster and simulate a remote cluster within a single Kibana directory.

  1. Run yarn es snapshot --license=trial and kill the process once the snapshot has been installed.
  2. Duplicate the ES installation by running cp -aR .es/8.0.0 .es/8.0.0-2.
  3. Start your "local" cluster by running .es/8.0.0/bin/elasticsearch and starting Kibana.
  4. Start your "remote" cluster by running .es/8.0.0-2/bin/elasticsearch -E cluster.name=europe -E transport.port=9400.
  5. Index a document into your remote cluster by running curl -X PUT http://elastic:changeme@localhost:9201/my-leader-index --data '{"settings":{"number_of_shards":1,"soft_deletes.enabled":true}}' --header "Content-Type: application/json". Note that these settings are required for testing auto-follow pattern conflicts errors (see below).

Now you can create follower indices and auto-follow patterns to replicate the my-leader-index index on the remote cluster that's available at 127.0.0.1:9400.

Auto-follow pattern conflict errors

You can view conflict errors by creating two auto-follow patterns with overlapping patterns (e.g. my* and my-*) that will both capture the my-leader-index index on your remote cluster. Run the curl command to create my-leader-index2 on your remote cluster, since auto-follow patterns don't replicate existing indices.

Now, when you open the details flyout of one of the auto-follow patterns you will see a list of recent errors.

image