Hi @Ambert van Unen Thank you for your question regarding Umbraco on Azure Web Apps.
Azure App Services uses a remote storage for site files. Your site files are not sitting directly on the worker themself. This can cause issues if you have a high IO operation, which is sounds like building the cache in your instance must be.
Secondly, can you please try to create something like a appSettings.json and place the below configurations?
{
"Umbraco": {
"CMS": {
"Global": {
"MainDomLock" : "SqlMainDomLock"
},
"Hosting": {
"LocalTempStorageLocation": "EnvironmentTemp"
},
"Examine": {
"LuceneDirectoryFactory": "SyncedTempFileSystemDirectoryFactory"
}
}
}
}
Lastly, can you ensure that your Azure SQL tier is S2 or higher? This is the minimum recommended tier as suggested by Umbraco themselves.
Please let us know the outcome. We look forward to your repl.