S3 Repository
editS3 Repository
editThe S3 repository is using S3 to store snapshots. The S3 repository can be created using the following command:
PUT _snapshot/my_s3_repository { "type": "s3", "settings": { "bucket": "my_bucket_name", "region": "us-west" } }
The following settings are supported:
-
bucket
- The name of the bucket to be used for snapshots. (Mandatory)
-
region
- The region where bucket is located. Defaults to US Standard
-
endpoint
- The endpoint to the S3 API. Defaults to AWS’s default S3 endpoint. Note that setting a region overrides the endpoint setting.
-
protocol
-
The protocol to use (
http
orhttps
). Defaults to value ofcloud.aws.protocol
orcloud.aws.s3.protocol
. -
base_path
-
Specifies the path within bucket to repository data. Defaults to
value of
repositories.s3.base_path
or to root directory if not set. -
access_key
-
The access key to use for authentication. Defaults to value of
cloud.aws.access_key
. -
secret_key
-
The secret key to use for authentication. Defaults to value of
cloud.aws.secret_key
. -
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 to100m
. -
compress
-
When set to
true
metadata files are stored in compressed format. This setting doesn’t affect index files that are already compressed by default. Defaults tofalse
. -
server_side_encryption
-
When set to
true
files are encrypted on server side using AES256 algorithm. Defaults tofalse
. -
buffer_size
-
Minimum threshold below which the chunk is uploaded using a single
request. Beyond this threshold, the S3 repository will use the
AWS Multipart Upload API
to split the chunk into several parts, each of
buffer_size
length, and to upload each part in its own request. Note that positioning a buffer size lower than5mb
is not allowed since it will prevents the use of the Multipart API and may result in upload errors. Defaults to5mb
. -
max_retries
-
Number of retries in case of S3 errors. Defaults to
3
.
The S3 repositories use the same credentials as the rest of the AWS services
provided by this plugin (discovery
). See Getting started with AWS for details.
Multiple S3 repositories can be created. If the buckets require different credentials, then define them as part of the repository settings.
Recommended S3 Permissions
editIn order to restrict the Elasticsearch snapshot process to the minimum required resources, we recommend using Amazon IAM in conjunction with pre-existing S3 buckets. Here is an example policy which will allow the snapshot access to an S3 bucket named "snaps.example.com". This may be configured through the AWS IAM console, by creating a Custom Policy, and using a Policy Document similar to this (changing snaps.example.com to your bucket name).
{ "Statement": [ { "Action": [ "s3:ListBucket", "s3:GetBucketLocation", "s3:ListBucketMultipartUploads", "s3:ListBucketVersions" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::snaps.example.com" ] }, { "Action": [ "s3:GetObject", "s3:PutObject", "s3:DeleteObject", "s3:AbortMultipartUpload", "s3:ListMultipartUploadParts" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::snaps.example.com/*" ] } ], "Version": "2012-10-17" }
You may further restrict the permissions by specifying a prefix within the bucket, in this example, named "foo".
{ "Statement": [ { "Action": [ "s3:ListBucket", "s3:GetBucketLocation", "s3:ListBucketMultipartUploads", "s3:ListBucketVersions" ], "Condition": { "StringLike": { "s3:prefix": [ "foo/*" ] } }, "Effect": "Allow", "Resource": [ "arn:aws:s3:::snaps.example.com" ] }, { "Action": [ "s3:GetObject", "s3:PutObject", "s3:DeleteObject", "s3:AbortMultipartUpload", "s3:ListMultipartUploadParts" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::snaps.example.com/foo/*" ] } ], "Version": "2012-10-17" }
The bucket needs to exist to register a repository for snapshots. If you did not create the bucket then the repository registration will fail. If you want elasticsearch to create the bucket instead, you can add the permission to create a specific bucket like this:
{ "Action": [ "s3:CreateBucket" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::snaps.example.com" ] }
Using other S3 endpoint
editIf you are using any S3 api compatible service, you can set a global endpoint by setting cloud.aws.s3.endpoint
to your URL provider. Note that this setting will be used for all S3 repositories.
Different endpoint
, region
and protocol
settings can be set on a per-repository basis
See S3 Repository for details.