Hi!
We have a 3-nodes self-hosted ES 8.5 cluster, and when we make daily snapshots few shards fail every time with the following error:
INTERNAL_SERVER_ERROR: UncategorizedExecutionException[Failed execution]; nested: ExecutionException[java.io.IOException: Input/output error]; nested: IOException[Input/output error]
Snapshots are stored on a standalone server, mounted as NFS on all ES nodes.
This is how snapshot repository is configured:
curl -k -u "elastic:password" -XPUT 'https://10.1.2.3:9200/_snapshot/nyx?pretty' -H 'Content-Type: application/json' -d '{
"type": "fs",
"settings": {
"location": "/mnt/backup/snapshots",
"compress": true
}
}'
Can you point me towards the way to debug these errors please?