
Elasticsearch 5.x Cookbook
By :

In the previous recipe, we defined a repository: the place where we will store the backups. Now we can create snapshots of indices, a full backup of an index, in the exact instant that the command is called.
For every repository it's possible to define multiple snapshots.
You need an up-and-running Elasticsearch installation as we described in the Downloading and installing Elasticsearch recipe in Chapter 2, Downloading and Setup.
To execute curl
via the command line you need to install curl
for your operating system.
To correctly execute the following command, the repository created in the previous recipe is required.
To manage a snapshot, we will perform the following steps:
To create a snapshot called snap_1
for the test
and test1
indices, the HTTP method is PUT
and the curl
command is as follows:
curl -XPUT "http://localhost:9200/_snapshot/my_repository/snap_1? wait_for_completion=true" -d '{ "indices...
Change the font size
Change margin width
Change background colour