2015-08-24 18:10:20 -04:00
[[repository-s3]]
=== S3 Repository Plugin
2015-08-15 12:00:55 -04:00
2015-08-24 18:10:20 -04:00
The S3 repository plugin adds support for using S3 as a repository for
2015-08-15 12:00:55 -04:00
{ref}/modules-snapshots.html[Snapshot/Restore].
2016-08-24 09:38:30 -04:00
*If you are looking for a hosted solution of Elasticsearch on AWS, please visit http://www.elastic.co/cloud.*
2017-04-20 09:01:37 -04:00
:plugin_name: repository-s3
include::install_remove.asciidoc[]
2015-08-15 12:00:55 -04:00
2015-08-24 18:10:20 -04:00
[[repository-s3-usage]]
2015-08-15 12:00:55 -04:00
==== Getting started with AWS
2017-08-04 14:22:49 -04:00
The plugin provides a repository type named `s3` which may be used when creating a repository.
2018-07-19 06:54:38 -04:00
The repository defaults to using https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html[ECS IAM Role] or
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html[EC2 IAM Role]
2017-08-04 14:22:49 -04:00
credentials for authentication. The only mandatory setting is the bucket name:
2015-08-15 12:00:55 -04:00
2017-08-04 14:22:49 -04:00
[source,js]
2015-08-15 12:00:55 -04:00
----
2017-08-04 14:22:49 -04:00
PUT _snapshot/my_s3_repository
{
"type": "s3",
"settings": {
"bucket": "my_bucket"
}
}
2015-08-15 12:00:55 -04:00
----
2017-08-04 14:22:49 -04:00
// CONSOLE
// TEST[skip:we don't have s3 setup while testing this]
2015-08-15 12:00:55 -04:00
2017-08-04 14:22:49 -04:00
[[repository-s3-client]]
==== Client Settings
2015-08-15 12:00:55 -04:00
2017-08-04 14:22:49 -04:00
The client used to connect to S3 has a number of settings available. Client setting names are of
2018-08-01 05:07:23 -04:00
the form `s3.client.CLIENT_NAME.SETTING_NAME`. The default client name, which is looked up by
an `s3` repository, is called `default`. It can be modified using the
<<repository-s3-repository, repository setting>> `client`. For example:
2015-08-15 12:00:55 -04:00
2017-08-04 14:22:49 -04:00
[source,js]
2015-08-15 12:00:55 -04:00
----
2017-08-04 14:22:49 -04:00
PUT _snapshot/my_s3_repository
{
"type": "s3",
"settings": {
"bucket": "my_bucket",
"client": "my_alternate_client"
}
}
2015-08-15 12:00:55 -04:00
----
2017-08-04 14:22:49 -04:00
// CONSOLE
// TEST[skip:we don't have s3 setup while testing this]
2015-08-15 12:00:55 -04:00
2018-08-01 05:07:23 -04:00
Most client settings are specified inside `elasticsearch.yml`, but some are
sensitive and must be stored in the {ref}/secure-settings.html[elasticsearch keystore].
For example, before you start the node, run these commands to add AWS access
key settings to the keystore:
2015-08-15 12:00:55 -04:00
2017-08-04 14:22:49 -04:00
[source,sh]
2015-08-15 12:00:55 -04:00
----
2017-08-04 14:22:49 -04:00
bin/elasticsearch-keystore add s3.client.default.access_key
bin/elasticsearch-keystore add s3.client.default.secret_key
2015-08-15 12:00:55 -04:00
----
2018-08-01 05:07:23 -04:00
*All* client secure settings of this plugin are
{ref}/secure-settings.html#reloadable-secure-settings[reloadable]. After you
reload the settings, the internal `s3` clients, used to transfer the snapshot
contents, will utilize the latest settings from the keystore. Any existing `s3`
repositories, as well as any newly created ones, will pick up the new values
stored in the keystore.
NOTE: In progress snapshot/restore tasks will not be preempted by a *reload*
of the client's secure settings. The task will complete using the client as it
was built when the operation started.
The following is the list of all the available client settings.
Those that must be stored in the keystore are marked as `Secure` and are *reloadable*.
2015-08-15 12:00:55 -04:00
2017-08-04 14:22:49 -04:00
`access_key`::
2015-08-15 12:00:55 -04:00
2017-08-04 14:22:49 -04:00
An s3 access key. The `secret_key` setting must also be specified. (Secure)
2016-12-03 17:47:00 -05:00
2017-08-04 14:22:49 -04:00
`secret_key`::
2016-12-05 13:29:17 -05:00
2017-08-04 14:22:49 -04:00
An s3 secret key. The `access_key` setting must also be specified. (Secure)
2018-07-03 09:12:07 -04:00
`session_token`::
An s3 session token. The `access_key` and `secret_key` settings must also
be specified. (Secure)
2017-08-04 14:22:49 -04:00
`endpoint`::
The s3 service endpoint to connect to. This will be automatically
figured out by the s3 client based on the bucket location, but
can be specified explicitly. See http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region.
`protocol`::
The protocol to use to connect to s3. Valid values are either `http`
or `https`. Defaults to `https`.
`proxy.host`::
The host name of a proxy to connect to s3 through.
`proxy.port`::
The port of a proxy to connect to s3 through.
`proxy.username`::
The username to connect to the `proxy.host` with. (Secure)
`proxy.password`::
The password to connect to the `proxy.host` with. (Secure)
`read_timeout`::
The socket timeout for connecting to s3. The value should specify the unit. For example,
a value of `5s` specifies a 5 second timeout. The default value is 50 seconds.
`max_retries`::
The number of retries to use when an s3 request fails. The default value is 3.
`use_throttle_retries`::
2017-11-09 07:25:51 -05:00
Whether retries should be throttled (ie use backoff). Must be `true` or `false`. Defaults to `true`.
2016-12-03 17:47:00 -05:00
2015-08-24 18:10:20 -04:00
[[repository-s3-repository]]
2017-08-04 14:22:49 -04:00
==== Repository Settings
2015-08-15 12:00:55 -04:00
2017-08-04 14:22:49 -04:00
The `s3` repository type supports a number of settings to customize how data is stored in S3.
These can be specified when creating the repository. For example:
2015-08-15 12:00:55 -04:00
2016-05-12 12:43:01 -04:00
[source,js]
2015-08-15 12:00:55 -04:00
----
PUT _snapshot/my_s3_repository
{
"type": "s3",
"settings": {
2017-08-04 14:22:49 -04:00
"bucket": "my_bucket_name",
"another_setting": "setting_value"
2015-08-15 12:00:55 -04:00
}
}
----
2016-05-09 09:42:23 -04:00
// CONSOLE
2016-05-13 16:15:51 -04:00
// TEST[skip:we don't have s3 set up while testing this]
2015-08-15 12:00:55 -04:00
The following settings are supported:
`bucket`::
The name of the bucket to be used for snapshots. (Mandatory)
2017-08-04 14:22:49 -04:00
`client`::
2015-08-15 12:00:55 -04:00
2017-08-04 14:22:49 -04:00
The name of the s3 client to use to connect to S3. Defaults to `default`.
2015-08-15 12:00:55 -04:00
`base_path`::
2015-08-18 07:12:58 -04:00
Specifies the path within bucket to repository data. Defaults to
value of `repositories.s3.base_path` or to root directory if not set.
2017-05-03 22:58:43 -04:00
Previously, the base_path could take a leading `/` (forward slash).
However, this has been deprecated and setting the base_path now should
omit the leading `/`.
2015-08-15 12:00:55 -04:00
`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,
2016-03-23 05:39:54 -04:00
i.e. `1gb`, `10mb`, `5kb`. Defaults to `1gb`.
2015-08-15 12:00:55 -04:00
`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 to `false`.
`server_side_encryption`::
When set to `true` files are encrypted on server side using AES256
algorithm. Defaults to `false`.
`buffer_size`::
Minimum threshold below which the chunk is uploaded using a single
request. Beyond this threshold, the S3 repository will use the
http://docs.aws.amazon.com/AmazonS3/latest/dev/uploadobjusingmpu.html[AWS Multipart Upload API]
to split the chunk into several parts, each of `buffer_size` length, and
2015-11-30 10:01:55 -05:00
to upload each part in its own request. Note that setting a buffer
2017-11-10 06:22:33 -05:00
size lower than `5mb` is not allowed since it will prevent the use of the
Multipart API and may result in upload errors. It is also not possible to
set a buffer size greater than `5gb` as it is the maximum upload size
allowed by S3. Defaults to the minimum between `100mb` and `5%` of the heap size.
2015-08-15 12:00:55 -04:00
2015-10-25 20:20:30 -04:00
`canned_acl`::
The S3 repository supports all http://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl[S3 canned ACLs]
: `private`, `public-read`, `public-read-write`, `authenticated-read`, `log-delivery-write`,
`bucket-owner-read`, `bucket-owner-full-control`. Defaults to `private`.
You could specify a canned ACL using the `canned_acl` setting. When the S3 repository
creates buckets and objects, it adds the canned ACL into the buckets and objects.
2015-11-19 07:10:08 -05:00
`storage_class`::
Sets the S3 storage class type for the backup files. Values may be
`standard`, `reduced_redundancy`, `standard_ia`. Defaults to `standard`.
Due to the extra complexity with the Glacier class lifecycle, it is not
currently supported by the plugin. For more information about the
different classes, see http://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html[AWS Storage Classes Guide]
2015-08-24 18:10:20 -04:00
[[repository-s3-permissions]]
2015-08-15 12:00:55 -04:00
===== Recommended S3 Permissions
In 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).
[source,js]
----
{
"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"
}
----
2016-08-29 17:33:25 -04:00
// NOTCONSOLE
2015-08-15 12:00:55 -04:00
You may further restrict the permissions by specifying a prefix within the bucket, in this example, named "foo".
[source,js]
----
{
"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"
}
----
2016-08-29 17:33:25 -04:00
// NOTCONSOLE
2015-08-15 12:00:55 -04:00
The bucket needs to exist to register a repository for snapshots. If you did not create the bucket then the repository
2018-06-15 08:55:14 -04:00
registration will fail.
2015-08-15 12:00:55 -04:00
2015-12-03 12:27:20 -05:00
[[repository-s3-aws-vpc]]
[float]
==== AWS VPC Bandwidth Settings
2017-11-29 03:44:25 -05:00
AWS instances resolve S3 endpoints to a public IP. If the Elasticsearch instances reside in a private subnet in an AWS VPC then all traffic to S3 will go through that VPC's NAT instance. If your VPC's NAT instance is a smaller instance size (e.g. a t1.micro) or is handling a high volume of network traffic your bandwidth to S3 may be limited by that NAT instance's networking bandwidth limitations.
2015-12-03 12:27:20 -05:00
Instances residing in a public subnet in an AWS VPC will connect to S3 via the VPC's internet gateway and not be bandwidth limited by the VPC's NAT instance.