put-repo-api.asciidoc 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. [[put-snapshot-repo-api]]
  2. === Put snapshot repository API
  3. ++++
  4. <titleabbrev>Put snapshot repository</titleabbrev>
  5. ++++
  6. Registers or updates a <<snapshots-register-repository,snapshot repository>>.
  7. [source,console]
  8. ----
  9. PUT /_snapshot/my_repository
  10. {
  11. "type": "fs",
  12. "settings": {
  13. "location": "my_backup_location"
  14. }
  15. }
  16. ----
  17. [[put-snapshot-repo-api-request]]
  18. ==== {api-request-title}
  19. `PUT /_snapshot/<repository>`
  20. `POST /_snapshot/<repository>`
  21. [[put-snapshot-repo-api-prereqs]]
  22. ==== {api-prereq-title}
  23. * If the {es} {security-features} are enabled, you must have the `manage`
  24. <<privileges-list-cluster,cluster privilege>> to use this API.
  25. [[put-snapshot-repo-api-desc]]
  26. ==== {api-description-title}
  27. A snapshot repository must be registered before you can perform
  28. <<snapshot-restore,snapshot and restore>> operations. You can use the put
  29. snapshot repository API to register new repositories and update existing ones.
  30. See <<snapshots-register-repository>>.
  31. TIP: Because snapshot formats can change between major versions of
  32. {es}, we recommend registering a new snapshot repository for each major version.
  33. See <<snapshot-restore-version-compatibility>>.
  34. [[put-snapshot-repo-api-path-params]]
  35. ==== {api-path-parms-title}
  36. `<repository>`::
  37. (Required, string)
  38. Name of the snapshot repository to register or update.
  39. [[put-snapshot-repo-api-query-params]]
  40. ==== {api-query-parms-title}
  41. IMPORTANT: Several options for this API can be specified using a query parameter
  42. or a request body parameter. If both parameters are specified, only the query
  43. parameter is used.
  44. `master_timeout`::
  45. (Optional, <<time-units, time units>>) Specifies the period of time to wait for
  46. a connection to the master node. If no response is received before the timeout
  47. expires, the request fails and returns an error. Defaults to `30s`.
  48. `timeout`::
  49. (Optional, <<time-units, time units>>) Specifies the period of time to wait for
  50. a response. If no response is received before the timeout expires, the request
  51. fails and returns an error. Defaults to `30s`.
  52. `verify`::
  53. (Optional, Boolean)
  54. If `true`, the request verifies the repository is functional on all master and
  55. data nodes in the cluster. If `false`, this verification is skipped. Defaults to
  56. `true`.
  57. +
  58. You can manually perform this verification using the
  59. <<verify-snapshot-repo-api,verify snapshot repository API>>.
  60. [role="child_attributes"]
  61. [[put-snapshot-repo-api-request-body]]
  62. ==== {api-request-body-title}
  63. `master_timeout`::
  64. (Optional, <<time-units, time units>>)
  65. Specifies the period of time to wait for
  66. a connection to the master node. If no response is received before the timeout
  67. expires, the request fails and returns an error. Defaults to `30s`.
  68. `timeout`::
  69. (Optional, <<time-units, time units>>)
  70. Specifies the period of time to wait for
  71. a response. If no response is received before the timeout expires, the request
  72. fails and returns an error. Defaults to `30s`.
  73. [[put-snapshot-repo-api-request-type]]
  74. `type`::
  75. +
  76. --
  77. (Required, string)
  78. Repository type.
  79. .Valid values for `type`
  80. [%collapsible%open]
  81. ====
  82. `fs`::
  83. Shared file system repository. Repositories of this type use a shared file
  84. system to store snapshots. This file system must accessible to all master and
  85. data nodes in the cluster.
  86. +
  87. IMPORTANT: To register a shared file system repository, you must mount the same
  88. shared filesystem to the same location on all master and data nodes. This
  89. location must be registered in the `path.repo` setting on all master and data
  90. nodes in the cluster.
  91. +
  92. See <<snapshots-filesystem-repository>>.
  93. [xpack]#`source`#::
  94. Source-only repository. You can use source-only repositories to create minimal,
  95. source-only snapshots that take up to 50% less space on disk.
  96. +
  97. Source-only snapshots are only supported if the <<mapping-source-field,`_source`
  98. field>> is enabled and no
  99. <<source-filtering,source-filtering>> is applied.
  100. +
  101. WARNING: Source-only snapshots contain stored fields and index metadata. They do
  102. not include index or doc values structures and are not searchable when restored.
  103. After restoring a source-only snapshot, you must <<docs-reindex,reindex>> the
  104. data into a new index.
  105. +
  106. See <<snapshots-source-only-repository>>.
  107. `url`::
  108. URL repository. Repositories of this type are read-only
  109. for the cluster. This means the cluster can retrieve or restore snapshots from
  110. the repository but cannot write or create snapshots in it.
  111. +
  112. You can use URL repositories as an alternative way to give a cluster read-only
  113. access to a shared file system (`fs`) repository.
  114. +
  115. See <<snapshots-read-only-repository>>.
  116. ====
  117. More repository types are available through these official
  118. plugins:
  119. * {plugins}/repository-s3.html[repository-s3] for S3 repository support
  120. * {plugins}/repository-hdfs.html[repository-hdfs] for HDFS repository support in
  121. Hadoop environments
  122. * {plugins}/repository-azure.html[repository-azure] for Azure storage
  123. repositories
  124. * {plugins}/repository-gcs.html[repository-gcs] for Google Cloud Storage
  125. repositories
  126. --
  127. [[put-snapshot-repo-api-settings-param]]
  128. `settings`::
  129. +
  130. --
  131. (Required, object)
  132. Contains settings for the repository.
  133. The following `settings` properties are valid for all repository types:
  134. .Properties of `settings`
  135. [%collapsible%open]
  136. ====
  137. `chunk_size`::
  138. (Optional, <<byte-units,byte value>>)
  139. Maximum size of files in snapshots. In snapshots, files larger than this are
  140. broken down into chunks of this size or smaller. Defaults to `null` (unlimited
  141. file size).
  142. `compress`::
  143. (Optional, Boolean)
  144. If `true`, metadata files, such as index mappings and settings, are compressed
  145. in snapshots. Data files are not compressed. Defaults to `true`.
  146. `max_number_of_snapshots`::
  147. (Optional, integer)
  148. Maximum number of snapshots the repository can contain. Defaults to `500`.
  149. +
  150. WARNING: We do not recommend increasing `max_number_of_snapshots`. Larger
  151. snapshot repositories may degrade master node performance and cause stability
  152. issues. Instead, delete older snapshots or use multiple repositories.
  153. `max_restore_bytes_per_sec`::
  154. (Optional, <<byte-units,byte value>>)
  155. Maximum snapshot restore rate per node. Defaults to unlimited. Note
  156. that restores are also throttled through <<recovery,recovery settings>>.
  157. `max_snapshot_bytes_per_sec`::
  158. (Optional, <<byte-units,byte value>>)
  159. Maximum snapshot creation rate per node. Defaults to `40mb` per second.
  160. `readonly`::
  161. (Optional, Boolean)
  162. If `true`, the repository is read-only. The cluster can retrieve and restore
  163. snapshots from the repository but not write to the repository or create
  164. snapshots in it.
  165. +
  166. If `false`, the cluster can write to the repository and create snapshots in it.
  167. Defaults to `false`.
  168. +
  169. [TIP]
  170. =====
  171. If you register the same snapshot repository with multiple clusters, only
  172. one cluster should have write access to the repository. Having multiple clusters
  173. write to the repository at the same time risks corrupting the contents of the
  174. repository.
  175. Only a cluster with write access can create snapshots in the repository. All
  176. other clusters connected to the repository should have the `readonly` parameter
  177. set to `true`. This means those clusters can retrieve or restore snapshots from
  178. the repository but not create snapshots in it.
  179. =====
  180. ====
  181. Other accepted `settings` properties depend on the repository type, set using the
  182. <<put-snapshot-repo-api-request-type,`type`>> parameter.
  183. .Valid `settings` properties for `fs` repositories
  184. [%collapsible%open]
  185. ====
  186. `location`::
  187. (Required, string)
  188. Location of the shared filesystem used to store and retrieve snapshots. This
  189. location must be registered in the `path.repo` setting on all master and data
  190. nodes in the cluster.
  191. ====
  192. .Valid `settings` properties for `source` repositories
  193. [%collapsible%open]
  194. ====
  195. `delegate_type`::
  196. (Optional, string)
  197. Delegated repository type. For valid values, see the
  198. <<put-snapshot-repo-api-request-type,`type` parameter>>.
  199. +
  200. `source` repositories can use `settings` properties for its delegated repository
  201. type. See <<snapshots-source-only-repository>>.
  202. ====
  203. .Valid `settings` properties for `url` repositories
  204. [%collapsible%open]
  205. ====
  206. `url`::
  207. (Required, string)
  208. URL location of the root of the shared filesystem repository. The following
  209. protocols are supported:
  210. * `file`
  211. * `ftp`
  212. * `http`
  213. * `https`
  214. * `jar`
  215. URLs using the `file` protocol must point to the location of a shared filesystem
  216. accessible to all master and data nodes in the cluster. This location must be
  217. registered in the `path.repo` setting.
  218. URLs using the `http`, `https`, or `ftp` protocols must be explicitly allowed with the
  219. `repositories.url.allowed_urls` setting. This setting supports wildcards in the
  220. place of a host, path, query, or fragment in the URL.
  221. ====
  222. --
  223. `verify`::
  224. (Optional, Boolean)
  225. If `true`, the request verifies the repository is functional on all master and
  226. data nodes in the cluster. If `false`, this verification is skipped. Defaults to
  227. `true`.
  228. +
  229. You can manually perform this verification using the
  230. <<snapshots-repository-verification,verify snapshot repository API>>.