snapshots.asciidoc 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. [[modules-snapshots]]
  2. == Snapshot And Restore
  3. The snapshot and restore module allows to create snapshots of individual indices or an entire cluster into a remote
  4. repository. At the time of the initial release only shared file system repository was supported, but now a range of
  5. backends are available via officially supported repository plugins.
  6. [float]
  7. === Repositories
  8. Before any snapshot or restore operation can be performed, a snapshot repository should be registered in
  9. Elasticsearch. The repository settings are repository-type specific. See below for details.
  10. [source,js]
  11. -----------------------------------
  12. PUT /_snapshot/my_backup
  13. {
  14. "type": "fs",
  15. "settings": {
  16. ... repository specific settings ...
  17. }
  18. }
  19. -----------------------------------
  20. Once a repository is registered, its information can be obtained using the following command:
  21. [source,js]
  22. -----------------------------------
  23. GET /_snapshot/my_backup
  24. -----------------------------------
  25. // CONSOLE
  26. which returns:
  27. [source,js]
  28. -----------------------------------
  29. {
  30. "my_backup": {
  31. "type": "fs",
  32. "settings": {
  33. "compress": "true",
  34. "location": "/mount/backups/my_backup"
  35. }
  36. }
  37. }
  38. -----------------------------------
  39. Information about multiple repositories can be fetched in one go by using a comma-delimited list of repository names.
  40. Star wildcards are supported as well. For example, information about repositories that start with `repo` or that contain `backup`
  41. can be obtained using the following command:
  42. [source,js]
  43. -----------------------------------
  44. GET /_snapshot/repo*,*backup*
  45. -----------------------------------
  46. If a repository name is not specified, or `_all` is used as repository name Elasticsearch will return information about
  47. all repositories currently registered in the cluster:
  48. [source,js]
  49. -----------------------------------
  50. GET /_snapshot
  51. -----------------------------------
  52. or
  53. [source,js]
  54. -----------------------------------
  55. GET /_snapshot/_all
  56. -----------------------------------
  57. [float]
  58. ===== Shared File System Repository
  59. The shared file system repository (`"type": "fs"`) uses the shared file system to store snapshots. In order to register
  60. the shared file system repository it is necessary to mount the same shared filesystem to the same location on all
  61. master and data nodes. This location (or one of its parent directories) must be registered in the `path.repo`
  62. setting on all master and data nodes.
  63. Assuming that the shared filesystem is mounted to `/mount/backups/my_backup`, the following setting should be added to
  64. `elasticsearch.yml` file:
  65. [source,yaml]
  66. --------------
  67. path.repo: ["/mount/backups", "/mount/longterm_backups"]
  68. --------------
  69. The `path.repo` setting supports Microsoft Windows UNC paths as long as at least server name and share are specified as
  70. a prefix and back slashes are properly escaped:
  71. [source,yaml]
  72. --------------
  73. path.repo: ["\\\\MY_SERVER\\Snapshots"]
  74. --------------
  75. After all nodes are restarted, the following command can be used to register the shared file system repository with
  76. the name `my_backup`:
  77. [source,js]
  78. -----------------------------------
  79. $ curl -XPUT 'http://localhost:9200/_snapshot/my_backup' -d '{
  80. "type": "fs",
  81. "settings": {
  82. "location": "/mount/backups/my_backup",
  83. "compress": true
  84. }
  85. }'
  86. -----------------------------------
  87. If the repository location is specified as a relative path this path will be resolved against the first path specified
  88. in `path.repo`:
  89. [source,js]
  90. -----------------------------------
  91. $ curl -XPUT 'http://localhost:9200/_snapshot/my_backup' -d '{
  92. "type": "fs",
  93. "settings": {
  94. "location": "my_backup",
  95. "compress": true
  96. }
  97. }'
  98. -----------------------------------
  99. The following settings are supported:
  100. [horizontal]
  101. `location`:: Location of the snapshots. Mandatory.
  102. `compress`:: Turns on compression of the snapshot files. Compression is applied only to metadata files (index mapping and settings). Data files are not compressed. Defaults to `true`.
  103. `chunk_size`:: Big files can be broken down into chunks during snapshotting if needed. The chunk size can be specified in bytes or by
  104. using size value notation, i.e. 1g, 10m, 5k. Defaults to `null` (unlimited chunk size).
  105. `max_restore_bytes_per_sec`:: Throttles per node restore rate. Defaults to `40mb` per second.
  106. `max_snapshot_bytes_per_sec`:: Throttles per node snapshot rate. Defaults to `40mb` per second.
  107. `readonly`:: Makes repository read-only. Defaults to `false`.
  108. [float]
  109. ===== Read-only URL Repository
  110. The URL repository (`"type": "url"`) can be used as an alternative read-only way to access data created by the shared file
  111. system repository. The URL specified in the `url` parameter should point to the root of the shared filesystem repository.
  112. The following settings are supported:
  113. [horizontal]
  114. `url`:: Location of the snapshots. Mandatory.
  115. URL Repository supports the following protocols: "http", "https", "ftp", "file" and "jar". URL repositories with `http:`,
  116. `https:`, and `ftp:` URLs has to be whitelisted by specifying allowed URLs in the `repositories.url.allowed_urls` setting.
  117. This setting supports wildcards in the place of host, path, query, and fragment. For example:
  118. [source,yaml]
  119. -----------------------------------
  120. repositories.url.allowed_urls: ["http://www.example.org/root/*", "https://*.mydomain.com/*?*#*"]
  121. -----------------------------------
  122. URL repositories with `file:` URLs can only point to locations registered in the `path.repo` setting similar to
  123. shared file system repository.
  124. [float]
  125. ===== Repository plugins
  126. Other repository backends are available in these official plugins:
  127. * {plugins}/repository-s3.html[repository-s3] for S3 repository support
  128. * {plugins}/repository-hdfs.html[repository-hdfs] for HDFS repository support in Hadoop environments
  129. * {plugins}/repository-azure.html[repository-azure] for Azure storage repositories
  130. * {plugins}/repository-gcs.html[repository-gcs] for Google Cloud Storage repositories
  131. [float]
  132. ===== Repository Verification
  133. When a repository is registered, it's immediately verified on all master and data nodes to make sure that it is functional
  134. on all nodes currently present in the cluster. The `verify` parameter can be used to explicitly disable the repository
  135. verification when registering or updating a repository:
  136. [source,js]
  137. -----------------------------------
  138. PUT /_snapshot/s3_repository?verify=false
  139. {
  140. "type": "s3",
  141. "settings": {
  142. "bucket": "my_s3_bucket",
  143. "region": "eu-west-1"
  144. }
  145. }
  146. -----------------------------------
  147. // CONSOLE
  148. The verification process can also be executed manually by running the following command:
  149. [source,js]
  150. -----------------------------------
  151. POST /_snapshot/s3_repository/_verify
  152. -----------------------------------
  153. // CONSOLE
  154. It returns a list of nodes where repository was successfully verified or an error message if verification process failed.
  155. [float]
  156. === Snapshot
  157. A repository can contain multiple snapshots of the same cluster. Snapshots are identified by unique names within the
  158. cluster. A snapshot with the name `snapshot_1` in the repository `my_backup` can be created by executing the following
  159. command:
  160. [source,js]
  161. -----------------------------------
  162. PUT /_snapshot/my_backup/snapshot_1?wait_for_completion=true
  163. -----------------------------------
  164. // CONSOLE
  165. The `wait_for_completion` parameter specifies whether or not the request should return immediately after snapshot
  166. initialization (default) or wait for snapshot completion. During snapshot initialization, information about all
  167. previous snapshots is loaded into the memory, which means that in large repositories it may take several seconds (or
  168. even minutes) for this command to return even if the `wait_for_completion` parameter is set to `false`.
  169. By default a snapshot of all open and started indices in the cluster is created. This behavior can be changed by
  170. specifying the list of indices in the body of the snapshot request.
  171. [source,js]
  172. -----------------------------------
  173. PUT /_snapshot/my_backup/snapshot_1
  174. {
  175. "indices": "index_1,index_2",
  176. "ignore_unavailable": "true",
  177. "include_global_state": false
  178. }
  179. -----------------------------------
  180. // CONSOLE
  181. The list of indices that should be included into the snapshot can be specified using the `indices` parameter that
  182. supports <<search-multi-index-type,multi index syntax>>. The snapshot request also supports the
  183. `ignore_unavailable` option. Setting it to `true` will cause indices that do not exist to be ignored during snapshot
  184. creation. By default, when `ignore_unavailable` option is not set and an index is missing the snapshot request will fail.
  185. By setting `include_global_state` to false it's possible to prevent the cluster global state to be stored as part of
  186. the snapshot. By default, the entire snapshot will fail if one or more indices participating in the snapshot don't have
  187. all primary shards available. This behaviour can be changed by setting `partial` to `true`.
  188. The index snapshot process is incremental. In the process of making the index snapshot Elasticsearch analyses
  189. the list of the index files that are already stored in the repository and copies only files that were created or
  190. changed since the last snapshot. That allows multiple snapshots to be preserved in the repository in a compact form.
  191. Snapshotting process is executed in non-blocking fashion. All indexing and searching operation can continue to be
  192. executed against the index that is being snapshotted. However, a snapshot represents the point-in-time view of the index
  193. at the moment when snapshot was created, so no records that were added to the index after the snapshot process was started
  194. will be present in the snapshot. The snapshot process starts immediately for the primary shards that has been started
  195. and are not relocating at the moment. Before version 1.2.0, the snapshot operation fails if the cluster has any relocating or
  196. initializing primaries of indices participating in the snapshot. Starting with version 1.2.0, Elasticsearch waits for
  197. relocation or initialization of shards to complete before snapshotting them.
  198. Besides creating a copy of each index the snapshot process can also store global cluster metadata, which includes persistent
  199. cluster settings and templates. The transient settings and registered snapshot repositories are not stored as part of
  200. the snapshot.
  201. Only one snapshot process can be executed in the cluster at any time. While snapshot of a particular shard is being
  202. created this shard cannot be moved to another node, which can interfere with rebalancing process and allocation
  203. filtering. Elasticsearch will only be able to move a shard to another node (according to the current allocation
  204. filtering settings and rebalancing algorithm) once the snapshot is finished.
  205. Once a snapshot is created information about this snapshot can be obtained using the following command:
  206. [source,sh]
  207. -----------------------------------
  208. GET /_snapshot/my_backup/snapshot_1
  209. -----------------------------------
  210. // CONSOLE
  211. Similar as for repositories, information about multiple snapshots can be queried in one go, supporting wildcards as well:
  212. [source,sh]
  213. -----------------------------------
  214. GET /_snapshot/my_backup/snapshot_*,some_other_snapshot
  215. -----------------------------------
  216. // CONSOLE
  217. All snapshots currently stored in the repository can be listed using the following command:
  218. [source,sh]
  219. -----------------------------------
  220. GET /_snapshot/my_backup/_all
  221. -----------------------------------
  222. // CONSOLE
  223. The command fails if some of the snapshots are unavailable. The boolean parameter `ignore_unvailable` can be used to
  224. return all snapshots that are currently available.
  225. A currently running snapshot can be retrieved using the following command:
  226. [source,sh]
  227. -----------------------------------
  228. $ curl -XGET "localhost:9200/_snapshot/my_backup/_current"
  229. -----------------------------------
  230. A snapshot can be deleted from the repository using the following command:
  231. [source,sh]
  232. -----------------------------------
  233. DELETE /_snapshot/my_backup/snapshot_1
  234. -----------------------------------
  235. // CONSOLE
  236. When a snapshot is deleted from a repository, Elasticsearch deletes all files that are associated with the deleted
  237. snapshot and not used by any other snapshots. If the deleted snapshot operation is executed while the snapshot is being
  238. created the snapshotting process will be aborted and all files created as part of the snapshotting process will be
  239. cleaned. Therefore, the delete snapshot operation can be used to cancel long running snapshot operations that were
  240. started by mistake.
  241. A repository can be deleted using the following command:
  242. [source,sh]
  243. -----------------------------------
  244. DELETE /_snapshot/my_backup
  245. -----------------------------------
  246. // CONSOLE
  247. When a repository is deleted, Elasticsearch only removes the reference to the location where the repository is storing
  248. the snapshots. The snapshots themselves are left untouched and in place.
  249. [float]
  250. === Restore
  251. A snapshot can be restored using the following command:
  252. [source,sh]
  253. -----------------------------------
  254. POST /_snapshot/my_backup/snapshot_1/_restore
  255. -----------------------------------
  256. // CONSOLE
  257. By default, all indices in the snapshot are restored, and the cluster state is
  258. *not* restored. It's possible to select indices that should be restored as well
  259. as to allow the global cluster state from being restored by using `indices` and
  260. `include_global_state` options in the restore request body. The list of indices
  261. supports <<search-multi-index-type,multi index syntax>>. The `rename_pattern`
  262. and `rename_replacement` options can be also used to rename indices on restore
  263. using regular expression that supports referencing the original text as
  264. explained
  265. http://docs.oracle.com/javase/6/docs/api/java/util/regex/Matcher.html#appendReplacement(java.lang.StringBuffer,%20java.lang.String)[here].
  266. Set `include_aliases` to `false` to prevent aliases from being restored together
  267. with associated indices
  268. [source,js]
  269. -----------------------------------
  270. POST /_snapshot/my_backup/snapshot_1/_restore
  271. {
  272. "indices": "index_1,index_2",
  273. "ignore_unavailable": "true",
  274. "include_global_state": true,
  275. "rename_pattern": "index_(.+)",
  276. "rename_replacement": "restored_index_$1"
  277. }
  278. -----------------------------------
  279. // CONSOLE
  280. The restore operation can be performed on a functioning cluster. However, an
  281. existing index can be only restored if it's <<indices-open-close,closed>> and
  282. has the same number of shards as the index in the snapshot. The restore
  283. operation automatically opens restored indices if they were closed and creates
  284. new indices if they didn't exist in the cluster. If cluster state is restored
  285. with `include_cluster_state` (defaults to `false`), the restored templates that
  286. don't currently exist in the cluster are added and existing templates with the
  287. same name are replaced by the restored templates. The restored persistent
  288. settings are added to the existing persistent settings.
  289. [float]
  290. ==== Partial restore
  291. By default, the entire restore operation will fail if one or more indices participating in the operation don't have
  292. snapshots of all shards available. It can occur if some shards failed to snapshot for example. It is still possible to
  293. restore such indices by setting `partial` to `true`. Please note, that only successfully snapshotted shards will be
  294. restored in this case and all missing shards will be recreated empty.
  295. [float]
  296. ==== Changing index settings during restore
  297. Most of index settings can be overridden during the restore process. For example, the following command will restore
  298. the index `index_1` without creating any replicas while switching back to default refresh interval:
  299. [source,js]
  300. -----------------------------------
  301. POST /_snapshot/my_backup/snapshot_1/_restore
  302. {
  303. "indices": "index_1",
  304. "index_settings": {
  305. "index.number_of_replicas": 0
  306. },
  307. "ignore_index_settings": [
  308. "index.refresh_interval"
  309. ]
  310. }
  311. -----------------------------------
  312. // CONSOLE
  313. Please note, that some settings such as `index.number_of_shards` cannot be changed during restore operation.
  314. [float]
  315. ==== Restoring to a different cluster
  316. The information stored in a snapshot is not tied to a particular cluster or a cluster name. Therefore it's possible to
  317. restore a snapshot made from one cluster into another cluster. All that is required is registering the repository
  318. containing the snapshot in the new cluster and starting the restore process. The new cluster doesn't have to have the
  319. same size or topology. However, the version of the new cluster should be the same or newer than the cluster that was
  320. used to create the snapshot.
  321. If the new cluster has a smaller size additional considerations should be made. First of all it's necessary to make sure
  322. that new cluster have enough capacity to store all indices in the snapshot. It's possible to change indices settings
  323. during restore to reduce the number of replicas, which can help with restoring snapshots into smaller cluster. It's also
  324. possible to select only subset of the indices using the `indices` parameter. Prior to version 1.5.0 elasticsearch
  325. didn't check restored persistent settings making it possible to accidentally restore an incompatible
  326. `discovery.zen.minimum_master_nodes` setting, and as a result disable a smaller cluster until the required number of
  327. master eligible nodes is added. Starting with version 1.5.0 incompatible settings are ignored.
  328. If indices in the original cluster were assigned to particular nodes using
  329. <<shard-allocation-filtering,shard allocation filtering>>, the same rules will be enforced in the new cluster. Therefore
  330. if the new cluster doesn't contain nodes with appropriate attributes that a restored index can be allocated on, such
  331. index will not be successfully restored unless these index allocation settings are changed during restore operation.
  332. [float]
  333. === Snapshot status
  334. A list of currently running snapshots with their detailed status information can be obtained using the following command:
  335. [source,sh]
  336. -----------------------------------
  337. GET /_snapshot/_status
  338. -----------------------------------
  339. // CONSOLE
  340. In this format, the command will return information about all currently running snapshots. By specifying a repository name, it's possible
  341. to limit the results to a particular repository:
  342. [source,sh]
  343. -----------------------------------
  344. GET /_snapshot/my_backup/_status
  345. -----------------------------------
  346. // CONSOLE
  347. If both repository name and snapshot id are specified, this command will return detailed status information for the given snapshot even
  348. if it's not currently running:
  349. [source,sh]
  350. -----------------------------------
  351. GET /_snapshot/my_backup/snapshot_1/_status
  352. -----------------------------------
  353. // CONSOLE
  354. Multiple ids are also supported:
  355. [source,sh]
  356. -----------------------------------
  357. GET /_snapshot/my_backup/snapshot_1,snapshot_2/_status
  358. -----------------------------------
  359. // CONSOLE
  360. [float]
  361. === Monitoring snapshot/restore progress
  362. There are several ways to monitor the progress of the snapshot and restores processes while they are running. Both
  363. operations support `wait_for_completion` parameter that would block client until the operation is completed. This is
  364. the simplest method that can be used to get notified about operation completion.
  365. The snapshot operation can be also monitored by periodic calls to the snapshot info:
  366. [source,sh]
  367. -----------------------------------
  368. GET /_snapshot/my_backup/snapshot_1
  369. -----------------------------------
  370. // CONSOLE
  371. Please note that snapshot info operation uses the same resources and thread pool as the snapshot operation. So,
  372. executing a snapshot info operation while large shards are being snapshotted can cause the snapshot info operation to wait
  373. for available resources before returning the result. On very large shards the wait time can be significant.
  374. To get more immediate and complete information about snapshots the snapshot status command can be used instead:
  375. [source,sh]
  376. -----------------------------------
  377. GET /_snapshot/my_backup/snapshot_1/_status
  378. -----------------------------------
  379. // CONSOLE
  380. While snapshot info method returns only basic information about the snapshot in progress, the snapshot status returns
  381. complete breakdown of the current state for each shard participating in the snapshot.
  382. The restore process piggybacks on the standard recovery mechanism of the Elasticsearch. As a result, standard recovery
  383. monitoring services can be used to monitor the state of restore. When restore operation is executed the cluster
  384. typically goes into `red` state. It happens because the restore operation starts with "recovering" primary shards of the
  385. restored indices. During this operation the primary shards become unavailable which manifests itself in the `red` cluster
  386. state. Once recovery of primary shards is completed Elasticsearch is switching to standard replication process that
  387. creates the required number of replicas at this moment cluster switches to the `yellow` state. Once all required replicas
  388. are created, the cluster switches to the `green` states.
  389. The cluster health operation provides only a high level status of the restore process. It’s possible to get more
  390. detailed insight into the current state of the recovery process by using <<indices-recovery, indices recovery>> and
  391. <<cat-recovery, cat recovery>> APIs.
  392. [float]
  393. === Stopping currently running snapshot and restore operations
  394. The snapshot and restore framework allows running only one snapshot or one restore operation at a time. If a currently
  395. running snapshot was executed by mistake, or takes unusually long, it can be terminated using the snapshot delete operation.
  396. The snapshot delete operation checks if the deleted snapshot is currently running and if it does, the delete operation stops
  397. that snapshot before deleting the snapshot data from the repository.
  398. The restore operation uses the standard shard recovery mechanism. Therefore, any currently running restore operation can
  399. be canceled by deleting indices that are being restored. Please note that data for all deleted indices will be removed
  400. from the cluster as a result of this operation.
  401. [float]
  402. === Effect of cluster blocks on snapshot and restore operations
  403. Many snapshot and restore operations are affected by cluster and index blocks. For example, registering and unregistering
  404. repositories require write global metadata access. The snapshot operation requires that all indices and their metadata as
  405. well as the global metadata were readable. The restore operation requires the global metadata to be writable, however
  406. the index level blocks are ignored during restore because indices are essentially recreated during restore.
  407. Please note that a repository content is not part of the cluster and therefore cluster blocks don't affect internal
  408. repository operations such as listing or deleting snapshots from an already registered repository.