Hi,
I am running Elasticsearch on eks cluster. for backup to s3 I have added repository-s3 plugin. When I run following command,
curl -X PUT "localhost:9200/_snapshot/my_s3_repository?pretty" -H 'Content-Type: application/json' -d'
{
"type": "s3",
"settings": {
"bucket": "uat-k8-elasticsearch-bckup",
"region": "ap-south-1",
"endpoint": "s3.ap-south-1.amazonaws.com"
}
}
'
I receive ..
{
"acknowledged" : true
}
But there is no upload on s3. Let me know how I can debug it.
Thanks in advance.