I'm making snapshots using s3 repository. Currently, I'm storing snapshots into one bucket.
I've made three snapshots, nevertheless, when I'm trying to get which ones are there, it only print me out one (the first one):
As you can see into the image, I've created three snapshots, nevertheless, when I perform a:
$ -XGET _snapshot/s3dev/_all?pretty
I'm getting this:
{
"snapshots" : [
{
"snapshot" : "20170427-121913",
"uuid" : "20170427-121913",
"version_id" : 2040099,
"version" : "2.4.0",
"indices" : [
"living_v1",
"living_v2"
],
"state" : "SUCCESS",
"start_time" : "2017-04-27T12:19:13.303Z",
"start_time_in_millis" : 1493295553303,
"end_time" : "2017-04-27T12:19:17.544Z",
"end_time_in_millis" : 1493295557544,
"duration_in_millis" : 4241,
"failures" : [ ],
"shards" : {
"total" : 10,
"failed" : 0,
"successful" : 10
}
}
]
}
I don't quite figure out why I'm getting only want available snapshot...
Any ideas?