https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask/2.10.0
New features
- Introduced Table-based Partition manager (i.e partition manager v3) (#2490). - contributed by @nytian
- The table-based partition Manager doesn't support managed identity yet: a connection string is required.
- To enable partition manager V3, the following configuration needs to be added in your app's host.json file.
{
"extensions": {
"durableTask": {
"useTablePartitionManagement": true
}
}
}