Our Azure Functions are using runtime version 4, I've upgraded Microsoft.Azure.WebJobs.Extensions.Storage to 5.3.1 as required to be able to utilise dynamic concurrency.
When I add enable dynamic concurrency as per below in the host.json file... all functions seem to be throttled to death and basically timeout?
"concurrency": {
"dynamicConcurrencyEnabled": true
}
Seems like a great feature... except it doesn't work? What am I missing?
Here is the complete host.json if that helps
{
"version": "2.0",
"concurrency": {
"dynamicConcurrencyEnabled": true
},
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"excludedTypes": "Request"
}
},
"logLevel": {
"MyProject.Common.Azure": "Information"
}
},
"extensions": {
"queues": {
"maxPollingInterval": "00:00:00.100"
}
}
}
Stack Settings




"concurrency": { "dynamicConcurrencyEnabled": true, "snapshotPersistenceEnabled": true }in host.json