Hi Team,
We are using elasticsearch 6.8.5 version in production with 3 Master and 8 data nodes. There is no path.repo property present in the production. I can't update elasticsearch.yml and restart nodes in production.
My Question is
- Without path.repo property, Can I use snapshot and restore api ?
- As I said, We have 3 Master and 8 data nodes and consider I'm using below request to register snapshot repo
PUT /_snapshot/esbackup
{
"type": "fs",
"settings": {
"location": "/home/esbackup"
}
}
question is which node will have the back up? all the 11 nodes (with their own data backed-up in the "/home/esbackup" location) or any one of the node (mostly which I login and send a backup request) will have the entire cluster back up (in "/home/esbackup" location)