[DOCS] - Updating chunk_size values to fix size value notation. Chunksize41591 (#45552) (#45579)

* changes to chunk_size #41591

* update to chunk size to include ` `

* Update docs/plugins/repository-azure.asciidoc

Co-Authored-By: James Rodewig <james.rodewig@elastic.co>

* Update docs/reference/modules/snapshots.asciidoc

Co-Authored-By: James Rodewig <james.rodewig@elastic.co>

* Update docs/plugins/repository-azure.asciidoc

Co-Authored-By: James Rodewig <james.rodewig@elastic.co>

* Update docs/plugins/repository-s3.asciidoc

Co-Authored-By: James Rodewig <james.rodewig@elastic.co>

* edits to fix passive voice
This commit is contained in:
Chris Dean 2019-08-14 15:59:36 -05:00 committed by GitHub
parent 285f011bbb
commit deab736aad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 28 additions and 28 deletions

View File

@ -121,8 +121,8 @@ The Azure repository supports following settings:
`chunk_size`::
Big files can be broken down into chunks during snapshotting if needed.
The chunk size can be specified in bytes or by using size value notation,
i.e. `1g`, `10m`, `5k`. Defaults to `64m` (64m max)
Specify the chunk size as a value and unit, for example:
`10MB`, `5KB`, `500B`. Defaults to `64MB` (64MB max).
`compress`::
@ -154,7 +154,7 @@ PUT _snapshot/my_backup2
"settings": {
"container": "backup-container",
"base_path": "backups",
"chunk_size": "32m",
"chunk_size": "32MB",
"compress": true
}
}

View File

@ -232,8 +232,8 @@ The following settings are supported:
`chunk_size`::
Big files can be broken down into chunks during snapshotting if needed.
The chunk size can be specified in bytes or by using size value notation,
e.g. , `10m` or `5k`. Defaults to `100m`, which is the maximum permitted.
Specify the chunk size as a value and unit, for example:
`10MB` or `5KB`. Defaults to `100MB`, which is the maximum permitted.
`compress`::

View File

@ -244,9 +244,9 @@ The following settings are supported:
`chunk_size`::
Big files can be broken down into chunks during snapshotting if needed. The
chunk size can be specified in bytes or by using size value notation, i.e.
`1gb`, `10mb`, `5kb`. Defaults to `1gb`.
Big files can be broken down into chunks during snapshotting if needed.
Specify the chunk size as a value and unit, for example:
`1GB`, `10MB`, `5KB`, `500B`. Defaults to `1GB`.
`compress`::

View File

@ -218,9 +218,9 @@ The following settings are supported:
[horizontal]
`location`:: Location of the snapshots. Mandatory.
`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 `false`.
`chunk_size`:: Big files can be broken down into chunks during snapshotting if needed. The chunk size can be specified in bytes or by
using size value notation, i.e. 1g, 10m, 5k. Defaults to `null` (unlimited chunk size).
`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`.
`chunk_size`:: Big files can be broken down into chunks during snapshotting if needed. Specify the chunk size as a value and
unit, for example: `1GB`, `10MB`, `5KB`, `500B`. Defaults to `null` (unlimited chunk size).
`max_restore_bytes_per_sec`:: Throttles per node restore rate. Defaults to `40mb` per second.
`max_snapshot_bytes_per_sec`:: Throttles per node snapshot rate. Defaults to `40mb` per second.
`readonly`:: Makes repository read-only. Defaults to `false`.