如何在快照中找到Elasticsearch索引?

时间:2016-10-11 00:47:08

标签: elasticsearch

我在AWS上运行了一个Elasticsearch集群,我有这样的快照

 {
     "snapshot": "2016-07-13_165430",
     "indices": [
        "analytical-2016-06-15",
        "analytical_2016-06-13",
        "analytical_2016-07-13",
        "operational-2016-06-15",
        "operational_2016-06-13",
        "operational_2016-07-13"
     ],
     "state": "SUCCESS",
     "start_time": "2016-10-10T23:54:33.705Z",
     "start_time_in_millis": 1476143673705,
     "end_time": "2016-10-10T23:54:44.893Z",
     "end_time_in_millis": 1476143684893,
     "duration_in_millis": 11188,
     "failures": [],
     "shards": {
        "total": 30,
        "failed": 0,
        "successful": 30
     }
  },
  {
     "snapshot": "2016-07-13_165546",
     "indices": [
        "analytical-2016-06-15",
        "analytical_2016-06-13",
        "analytical_2016-07-13",
        "operational-2016-06-15",
        "operational_2016-06-13",
        "operational_2016-07-13"
     ],
     "state": "SUCCESS",
     "start_time": "2016-10-10T23:55:48.808Z",
     "start_time_in_millis": 1476143748808,
     "end_time": "2016-10-10T23:55:52.420Z",
     "end_time_in_millis": 1476143752420,
     "duration_in_millis": 3612,
     "failures": [],
     "shards": {
        "total": 30,
        "failed": 0,
        "successful": 30
     }
  }

现在所有这些索引都在线运行,其他索引如下: “分析-2016年6月15日”,
“analytical_2016-06-13”,
“analytical_2016-07-13”,
“操作 - 2016年6月15日”,
“operational_2016-06-13”,
“operational_2016-07-13”
“operational_2016-09-13”
....

我需要检查我的索引是否已备份,以及是否已备份其存在的​​快照。

2 个答案:

答案 0 :(得分:0)

我怀疑@air 对查找许多 快照中的哪些包含给定索引感兴趣;粘贴的示例只是快照历史记录的一种视图。当您在一段时间内每天拍摄快照并且添加/删除索引时,手动搜索将是一件苦差事。

似乎没有“查找包含索引 operational_2021-06-10 的所有快照”的 API 调用,但这里有一个自动化选项:

 curl -XGET "http://cluster:9200/_snapshot/myrepo/*" |
   jq -c '.snapshots[] | select(.indices | index("operational_2021-06-10")) | { snapshot }'

{"snapshot":"daily-snap-2021.06.10-hjmskkjsryyq82asmxiuva"}
{"snapshot":"daily-snap-2021.06.11-eayyiiort0cx97r_jscara"}
{"snapshot":"daily-snap-2021.06.12-rmrsbmsespgf0_czu721hw"}
{"snapshot":"daily-snap-2021.06.13-meeoachori61w5r3n3qzaq"}
{"snapshot":"daily-snap-2021.06.14-espbnhuprcckqylk3xltwq"}
{"snapshot":"daily-snap-2021.06.15-sbosayasthinaudxaqw3pa"}

答案 1 :(得分:-1)

我对您的问题感到困惑,因为您发布了快照json,它告诉您确切地在每个快照中备份了哪些索引。您需要遍历每个快照存储库中的每个快照(我认为您已经知道该怎么做)并查看每个快照中的索引。

这是AFAIK确定备份哪些索引,何时以及通过哪些快照进行备份的唯一方法。

以下是快照API的文档:https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-snapshots.html