# Snapshot missing Exception- No snapshot information

**URL:** https://discuss.elastic.co/t/snapshot-missing-exception-no-snapshot-information/358091
**Category:** Elasticsearch
**Tags:** snapshot-and-restore
**Created:** [April 24, 2024, 6:39am UTC](https://discuss.elastic.co/t/snapshot-missing-exception-no-snapshot-information/358091 "2024-04-24T06:39:40Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Anushree](https://avatars.discourse-cdn.com/v4/letter/a/e0b2c6/32.png) [@Anushree](https://discuss.elastic.co/u/Anushree)
#### Post date: [April 24, 2024, 6:39am UTC](https://discuss.elastic.co/t/snapshot-missing-exception-no-snapshot-information/358091/1 "2024-04-24T06:39:40Z")

</div>

Each week, our automated system is scheduled to remove existing snapshots and upload new ones to the Azure blob storage containers. However, once the fresh snapshots are uploaded, the Kibana dashboard displays 'No snapshot information' for the 'default' client's Azure repository.

 ![image](https://us1.discourse-cdn.com/elastic/original/3X/e/2/e2b5a09cf02f5c97688466d50acd92dede14092a.png)

Additionally, when utilizing the API, I encounter a 'Snapshot missing exception.' This exception refers to snapshots that have already been erased. It's unclear why Elasticsearch attempts to access snapshots that no longer exist. As a temporary workaround, manually deleting and recreating the repository on the dashboard resolves the problem.

```auto
[root@VM0D tech]# curl -XGET -u elastic:*** --insecure https://localhost:9200/_snapshot/distribution/_all?pretty
{
  "error" : {
    "root_cause" : [
      {
        "type" : "snapshot_missing_exception",
        "reason" : "[distribution:company-subsidiary-2023.11.28-06.45.43/sKwDYOMQTs-1cF0k&6TgHw] is missing"
      }
    ],
    "type" : "snapshot_missing_exception",
    "reason" : "[distribution:company-subsidiary-2023.11.28-06.45.43/sKwDYOMQTs-1cF0k&6TgHw] is missing",
    "caused_by" : {
      "type" : "no_such_file_exception",
      "reason" : "Blob [snap-sKwDYOMQTs-1cF0k&6TgHw.dat] not found"
    }
  },
  "status" : 404
}

```

Similar workaround suggested by Elastic forum [Missing Snapshot Error](https://discuss.elastic.co/t/missing-snapshot-error/134485)  
Is there a more permanent solution available? We began experiencing this issue following an upgrade from version 7.17 to 8.10 across all our environments, both lower and higher.

---

<div class="post-metadata">

### Author: ![Anushree](https://avatars.discourse-cdn.com/v4/letter/a/e0b2c6/32.png) [@Anushree](https://discuss.elastic.co/u/Anushree)
#### Post date: [May 6, 2024, 11:52am UTC](https://discuss.elastic.co/t/snapshot-missing-exception-no-snapshot-information/358091/2 "2024-05-06T11:52:40Z")

</div>

Can anyone please provide an input on this issue ?

---

<div class="post-metadata">

### Author: ![DavidTurner](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/davidturner/32/22453_2.png) [@DavidTurner](https://discuss.elastic.co/u/DavidTurner)
#### Post date: [May 6, 2024, 12:41pm UTC](https://discuss.elastic.co/t/snapshot-missing-exception-no-snapshot-information/358091/3 "2024-05-06T12:41:45Z")

</div>

> [@Anushree](#):
>
> `sKwDYOMQTs-1cF0k&6TgHw`

That is definitely not a valid snapshot ID. There's something very wrong with your repository. I would recommend starting again with a fresh repository.

---

<div class="post-metadata">

### Author: ![Anushree](https://avatars.discourse-cdn.com/v4/letter/a/e0b2c6/32.png) [@Anushree](https://discuss.elastic.co/u/Anushree)
#### Post date: [May 13, 2024, 1:38pm UTC](https://discuss.elastic.co/t/snapshot-missing-exception-no-snapshot-information/358091/4 "2024-05-13T13:38:02Z")

</div>

The Snapshot ID mentioned in the previous post was incorrect. Please refer to the correct Snapshot ID provided here.

```auto
[root@VM0D tech]# curl -XGET -u elastic:*** --insecure https://localhost:9200/_snapshot/distribution/_all?pretty
{
  "error" : {
    "root_cause" : [
      {
        "type" : "snapshot_missing_exception",
        "reason" : "[distribution:company-subsidiary-2023.11.28-06.45.43/sKwDYOKQTs-1cF0kG6TgHw] is missing"
      }
    ],
    "type" : "snapshot_missing_exception",
    "reason" : "[distribution:company-subsidiary-2023.11.28-06.45.43/sKwDYOKQTs-1cF0kG6TgHw] is missing",
    "caused_by" : {
      "type" : "no_such_file_exception",
      "reason" : "Blob [snap-sKwDYOKQTs-1cF0kG6TgHw.dat] not found"
    }
  },
  "status" : 404
}

```
