Hi Guys,
i'm trying to setup snapshot of my elasticsearch cluster with a compatible S3 service but i got an error on setup.
I'm using ES 1.7.6 with cloud-aws 2.7.1.
Plugin rebuild my endpoint with .endpoint_url that obviusly doesn't exist. Anyone could explain me how to use it S3 repository with custom service (I'm using Openstack Swift with S3 middleware).
This is the command:
curl -XPUT 'http://localhost:9200/_snapshot/backup_es -d '
{
"type": "s3",
"settings": {
"bucket": "backup_es",
"endpoint": "storage.example.com"
"region": "",
"access_key": "",
"secret_key": "",
"verify": false
}
}'
Thanks
Davide