-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into reporting/docker-config-whitelist-2
- Loading branch information
Showing
2,999 changed files
with
33,230 additions
and
62,076 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
...ent/core/server/kibana-plugin-core-server.savedobjectstype.namespaceagnostic.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
...gins/data/public/kibana-plugin-plugins-data-public.searchstrategyprovider.id.md
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...ata/public/kibana-plugin-plugins-data-public.searchstrategyprovider.isviable.md
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...plugins/data/public/kibana-plugin-plugins-data-public.searchstrategyprovider.md
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
.../data/public/kibana-plugin-plugins-data-public.searchstrategyprovider.search.md
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Elasticsearch Index Templates | ||
|
||
## Generation | ||
|
||
* Index templates are generated from `YAML` files contained in the package. | ||
* There is one index template per dataset. | ||
* For the generation of an index template, all `yml` files contained in the package subdirectory `dataset/DATASET_NAME/fields/` are used. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
[role="xpack"] | ||
[[managing-cross-cluster-replication]] | ||
== Cross-Cluster Replication | ||
|
||
Use *Cross-Cluster Replication* to reproduce indices in | ||
remote clusters on a local cluster. {ref}/xpack-ccr.html[Cross-cluster replication] | ||
is commonly used to provide remote backups for disaster recovery and for | ||
geo-proximite copies of data. | ||
|
||
To get started, go to *Management > Cross-Cluster Replication*. | ||
|
||
[role="screenshot"] | ||
image::images/cross-cluster-replication-list-view.png[][Cross-cluster replication list view] | ||
|
||
[float] | ||
=== Prerequisites | ||
|
||
* You must have a {ref}/modules-remote-clusters.html[remote cluster]. | ||
* Leader indices must meet {ref}/ccr-requirements.html[these requirements]. | ||
* The Elasticsearch version of the local cluster must be the same as or newer than the remote cluster. | ||
Refer to {ref}/ccr-overview.html[this document] for more information. | ||
|
||
[float] | ||
[[configure-replication]] | ||
=== Configure replication | ||
|
||
Replication requires a leader index, the index being replicated, and a | ||
follower index, which will contain the leader index's replicated data. | ||
The follower index is passive in that it can read requests and searches, | ||
but cannot accept direct writes. Only the leader index is active for direct writes. | ||
|
||
You can configure follower indices in two ways: | ||
|
||
* Create specific follower indices | ||
* Create follower indices from an auto-follow pattern | ||
|
||
[float] | ||
==== Create specific follower indices | ||
|
||
To replicate data from existing indices, or set up local followers on a case-by-case basis, | ||
go to *Follower indices*. When you create the follower index, you must reference the | ||
remote cluster and the leader index that you created in the remote cluster. | ||
|
||
[role="screenshot"] | ||
image::images/follower_indices.png[][UI for adding follower indices] | ||
|
||
[float] | ||
==== Create follower indices from an auto-follow pattern | ||
|
||
To automatically detect and follow new indices when they are created on a remote cluster, | ||
go to *Auto-follow patterns*. Creating an auto-follow pattern is useful when you have | ||
time series data, like event logs, on the remote cluster that is created or rolled over on a daily basis. | ||
|
||
When creating the pattern, you must reference the remote cluster that you | ||
connected to your local cluster. You must also specify a collection of index patterns | ||
that match the indices you want to automatically follow. | ||
|
||
Once you configure an | ||
auto-follow pattern, any time a new index with a name that matches the pattern is | ||
created in the remote cluster, a follower index is automatically configured in the local cluster. | ||
|
||
[role="screenshot"] | ||
image::images/auto_follow_pattern.png[UI for adding an auto-follow pattern] | ||
|
||
[float] | ||
[[manage-replication]] | ||
=== Manage replication | ||
|
||
Use the list views in *Cross-Cluster Replication* to monitor whether the replication is active and | ||
pause and resume replication. You can also edit and remove the follower indices and auto-follow patterns. | ||
|
||
For an example of cross-cluster replication, | ||
refer to https://www.elastic.co/blog/bi-directional-replication-with-elasticsearch-cross-cluster-replication-ccr[Bi-directional replication with Elasticsearch cross-cluster replication]. |
Oops, something went wrong.