## The problem
Issue meilisearch/meilisearch#4123 (closed, 21 comments): **Describe the bug** When deploying Meilisearch on Azure with the one click template in the documentation and then changing the App Service Plan level, the application becomes "kind of" unresponsive. This means that i.e. Index creation is not working or requesting Task status is returning 404's even though the tasks were clearly created. Some requests however still work normally like "client.get_all_stats()". All in all the whole application just becomes unusable and needs to be completely deleted. One can even select the highest level plan and still get this result.
## What to do
[Kerollmops (maintainer)]: The task-queue corruption on Azure App Service comes from storage: the one-click template puts Meilisearch's data on a network share, and the LMDB backend does not support network filesystems. Changing the App Service plan moves the data and corrupts the DB. Use a local persistent disk instead; the team opened a docs issue to fix the template.