Stack
ES 6.8.2
Minio S3 VERSION:
2019-10-12T01:39:57Z
I have es cluster running.
When I try to create repo for s3 on minio
with
{
"type": "s3",
"settings": {
"bucket": "elasticsearch-backups",
"endpoint": "dns-name"
}
}
I get
"error" : {
"root_cause" : [
{
"type" : "repository_verification_exception",
"reason" : "[es_snapshot_s3] path is not accessible on master node"
}
],
"type" : "repository_verification_exception",
"reason" : "[es_snapshot_s3] path is not accessible on master node",
"caused_by" : {
"type" : "i_o_exception",
"reason" : "Unable to upload object [tests-KnN5zU85RRmeOSfqPWX1Pg/master.dat] using a single upload",
"caused_by" : {
"type" : "sdk_client_exception",
"reason" : "Unable to execute HTTP request: elasticsearch-backups.dns-name",
"caused_by" : {
"type" : "unknown_host_exception",
"reason" : "elasticsearch-backups.dns-name"
}
}
}
},
"status" : 500
}
because there is no elasticsearch-backups.dns-name dns A record
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [?:1.8.0_91]
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_91]
Caused by: java.net.UnknownHostException: elasticsearch-backups.dns-name
at java.net.InetAddress.getAllByName0(InetAddress.java:1280) ~[?:1.8.0_91]
at java.net.InetAddress.getAllByName(InetAddress.java:1192) ~[?:1.8.0_91]
at java.net.InetAddress.getAllByName(InetAddress.java:1126) ~[?:1.8.0_91]
These is path_style_access option but I am not sure that it is available in 6.8.2 version ES.
Can someone clarify?