All methods and paths for this operation:
Take a snapshot of a cluster or of data streams and indices.
create_snapshotThe name of the repository for the snapshot.
The name of the snapshot. It supportes date math. It must be unique in the repository.
The period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error.
Values are -1 or 0.
If true, the request returns a response when the snapshot is complete.
If false, the request returns a response when the snapshot initializes.
The feature states to include in the snapshot. Each feature state includes one or more system indices containing related data. You can view a list of eligible features using the get features API.
If include_global_state is true, all current feature states are included by default.
If include_global_state is false, no feature states are included by default.
Note that specifying an empty array will result in the default behavior.
To exclude all feature states, regardless of the include_global_state value, specify an array with only the value none (["none"]).
If true, the current cluster state is included in the snapshot.
The cluster state includes persistent cluster settings, composable index templates, legacy index templates, ingest pipelines, and ILM policies.
It also includes data stored in system indices, such as Watches and task records (configurable via feature_states).
Default value is true.
If true, it enables you to restore a partial snapshot of indices with unavailable shards.
Only shards that were successfully included in the snapshot will be restored.
All missing shards will be recreated as empty.
If false, the entire restore operation will fail if one or more indices included in the snapshot do not have all primary shards available.
Default value is false.
PUT /_snapshot/my_repository/snapshot_2?wait_for_completion=true
{
"indices": "index_1,index_2",
"ignore_unavailable": true,
"include_global_state": false,
"metadata": {
"taken_by": "user123",
"taken_because": "backup before upgrading"
}
}
resp = client.snapshot.create(
repository="my_repository",
snapshot="snapshot_2",
wait_for_completion=True,
indices="index_1,index_2",
ignore_unavailable=True,
include_global_state=False,
metadata={
"taken_by": "user123",
"taken_because": "backup before upgrading"
},
)
const response = await client.snapshot.create({
repository: "my_repository",
snapshot: "snapshot_2",
wait_for_completion: "true",
indices: "index_1,index_2",
ignore_unavailable: true,
include_global_state: false,
metadata: {
taken_by: "user123",
taken_because: "backup before upgrading",
},
});
response = client.snapshot.create(
repository: "my_repository",
snapshot: "snapshot_2",
wait_for_completion: "true",
body: {
"indices": "index_1,index_2",
"ignore_unavailable": true,
"include_global_state": false,
"metadata": {
"taken_by": "user123",
"taken_because": "backup before upgrading"
}
}
)
$resp = $client->snapshot()->create([
"repository" => "my_repository",
"snapshot" => "snapshot_2",
"wait_for_completion" => "true",
"body" => [
"indices" => "index_1,index_2",
"ignore_unavailable" => true,
"include_global_state" => false,
"metadata" => [
"taken_by" => "user123",
"taken_because" => "backup before upgrading",
],
],
]);
curl -X PUT -H "Authorization: ApiKey $ELASTIC_API_KEY" -H "Content-Type: application/json" -d '{"indices":"index_1,index_2","ignore_unavailable":true,"include_global_state":false,"metadata":{"taken_by":"user123","taken_because":"backup before upgrading"}}' "$ELASTICSEARCH_URL/_snapshot/my_repository/snapshot_2?wait_for_completion=true"
client.snapshot().create(c -> c
.ignoreUnavailable(true)
.includeGlobalState(false)
.indices("index_1,index_2")
.metadata(Map.of("taken_by", JsonData.fromJson("\"user123\""),"taken_because", JsonData.fromJson("\"backup before upgrading\"")))
.repository("my_repository")
.snapshot("snapshot_2")
.waitForCompletion(true)
);
{
"indices": "index_1,index_2",
"ignore_unavailable": true,
"include_global_state": false,
"metadata": {
"taken_by": "user123",
"taken_because": "backup before upgrading"
}
}
{
"snapshot": {
"snapshot": "snapshot_2",
"uuid": "vdRctLCxSketdKb54xw67g",
"repository": "my_repository",
"version_id": <version_id>,
"version": <version>,
"indices": [],
"data_streams": [],
"feature_states": [],
"include_global_state": false,
"metadata": {
"taken_by": "user123",
"taken_because": "backup before upgrading"
},
"state": "SUCCESS",
"start_time": "2020-06-25T14:00:28.850Z",
"start_time_in_millis": 1593093628850,
"end_time": "2020-06-25T14:00:28.850Z",
"end_time_in_millis": 1593094752018,
"duration_in_millis": 0,
"failures": [],
"shards": {
"total": 0,
"failed": 0,
"successful": 0
}
}
}