[DOCS] Add documentation for URL repository
This commit is contained in:
parent
3d4891321b
commit
4643f78098
|
@ -71,6 +71,18 @@ on all data and master nodes. The following settings are supported:
|
|||
using size value notation, i.e. 1g, 10m, 5k. Defaults to `null` (unlimited chunk size).
|
||||
|
||||
|
||||
[float]
|
||||
===== Read-only URL Repository
|
||||
|
||||
The URL repository (`"type": "url"`) can be used as an alternative read-only way to access data created by shared file
|
||||
system repository is using shared file system to store snapshot. The URL specified in the `url` parameter should
|
||||
point to the root of the shared filesystem repository. The following settings are supported:
|
||||
|
||||
[horizontal]
|
||||
`url`:: Location of the snapshots. Mandatory.
|
||||
`concurrent_streams`:: Throttles the number of streams (per node) preforming snapshot operation. Defaults to `5`
|
||||
|
||||
|
||||
[float]
|
||||
=== Snapshot
|
||||
|
||||
|
@ -170,7 +182,7 @@ http://docs.oracle.com/javase/6/docs/api/java/util/regex/Matcher.html#appendRepl
|
|||
-----------------------------------
|
||||
$ curl -XPOST "localhost:9200/_snapshot/my_backup/snapshot_1/_restore" -d '{
|
||||
"indices": "index_1,index_2",
|
||||
"ignore_unavailable": "missing",
|
||||
"ignore_unavailable": "true",
|
||||
"include_global_state": false,
|
||||
"rename_pattern": "index_(.)+",
|
||||
"rename_replacement": "restored_index_$1"
|
||||
|
|
Loading…
Reference in New Issue