Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit e772a92

Browse files
committed
Adds a couple new settings
1 parent cbaf770 commit e772a92

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/elasticsearch/snapshot-restore.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,15 @@ readonly | Whether the repository is read-only. Useful when migrating from one c
144144
1. (Optional) Add other settings to `elasticsearch.yml`:
145145

146146
```yml
147+
disable_chunked_encoding: false # Disables chunked encoding for compatibility with some storage services, but you probably don't need to change this value.
147148
endpoint: s3.amazonaws.com # S3 has alternate endpoints, but you probably don't need to change this value.
149+
max_retries: 3 # number of retries if a request fails
150+
path_style_access: false # whether to use the deprecated path-style bucket URLs.
151+
# You probably don't need to change this value, but for more information, see https://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html#path-style-access.
148152
protocol: https # http or https
149153
proxy.host: my-proxy-host # the hostname for your proxy server
150154
proxy.port: 8080 # port for your proxy server
151155
read_timeout: 50s # the S3 connection timeout
152-
max_retries: 3 # number of retries if a request fails
153156
use_throttle_retries: true # whether the client should wait a progressively longer amount of time (exponential backoff) between each successive retry
154157
```
155158

0 commit comments

Comments
 (0)