我正在使用ES 2.X.我正在使用AWS Cloud Plugin
我已安排作业每天拍摄我的群集的快照。
我的工作成功运行,我有过去两天我的集群的快照。
今天我的工作是抛出以下错误:
repository_missing_exception
。
我使用以下命令检查了存储库详细信息:
http://10.xx.xx.xx:9200/_snapshot/my_repository
我的详情如下:
{
"my_repository": {
"type": "s3",
"settings": {
"bucket": "elasticsearch-backup",
"region": "us-west-1"
}
}
}
我无法理解这是什么问题?
我正在使用Java程序拍摄快照,请参阅代码:
JSONObject data = new JSONObject();
data.put("ignore_unavailable", true);
data.put("include_global_state", false);
data.put("compress", true);`
WebTarget target = client.target("http://"+Host+":"+Port+"/"+"_snapshot"+"/"+Repo+"/"+snapShotName+"?pretty?wait_for_completion=true");
target.request().put(Entity.json(data));