исключение проверки репозиторияasticsearch azure - PullRequest
0 голосов
/ 08 июля 2019

Я установил repository-azure и настроил elasticsearch со следующими настройками:

path.data: /datadrive/elasticsearch/data
path.logs: /datadrive/elasticsearch/log
cloud:
    azure:
        storage:
            my_account:
                account: teststorage
                key: NtZQddasdasdasdsadsadfdsdsfsafsadasdyyP==

Когда я пытаюсь сделать снимок, выдается ошибка.

Запрос:

PUT _snapshot/es_snapshot
{
    "type": "azure"
}

Ответ:

{
  "error": {
    "root_cause": [
      {
    "type": "repository_verification_exception",
    "reason": "[es_snapshot] path  is not accessible on master node"
      }
    ],
    "type": "repository_verification_exception",
    "reason": "[es_snapshot] path  is not accessible on master node",
    "caused_by": {
      "type": "i_o_exception",
      "reason": "Can not write blob master.dat",
      "caused_by": {
    "type": "storage_exception",
    "reason": "The specified container does not exist."
      }
    }
  },
  "status": 500
}
...