Skip to content

Commit b943db7

Browse files
authored
Add note about support for Durable Entities w/MSSQL
1 parent 57c99c9 commit b943db7

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

articles/azure-functions/durable/durable-functions-entities.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,9 @@ public static Task DispatchAsync([EntityTrigger] TaskEntityDispatcher dispatcher
162162
}
163163
```
164164

165+
> [!NOTE]
166+
> Durable Entities for the Isolated worker process is not currently supported when using the [MSSQL state provider](./durable-functions-storage-providers.md#mssql).
167+
165168
### [Isolated worker process](#tab/isolated-process/class-based)
166169

167170
The following example shows the implementation of the `Counter` entity using classes and methods.
@@ -217,6 +220,10 @@ public static Task RunEntityStaticAsync([EntityTrigger] TaskEntityDispatcher dis
217220
return dispatcher.DispatchAsync<Counter>();
218221
}
219222
```
223+
224+
> [!NOTE]
225+
> Durable Entities for the Isolated worker process is not currently supported when using the [MSSQL state provider](./durable-functions-storage-providers.md#mssql).
226+
220227
---
221228
::: zone-end
222229
::: zone pivot="javascript"

articles/azure-functions/durable/durable-functions-storage-providers.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ There are many significant tradeoffs between the various supported storage provi
191191
| Maximum throughput | Moderate | Very high | Moderate |
192192
| Maximum orchestration/entity scale-out (nodes) | 16 | 32 | N/A |
193193
| Maximum activity scale-out (nodes) | N/A | 32 | N/A |
194+
| Durable Entities support | ✅ Fully supported | ✅ Fully supported | ⚠️ Supported except when using .NET Isolated |
194195
| [KEDA 2.0](https://keda.sh/) scaling support<br/>([more information](../functions-kubernetes-keda.md)) | ❌ Not supported | ❌ Not supported | ✅ Supported using the [MSSQL scaler](https://keda.sh/docs/scalers/mssql/) ([more information](https://microsoft.github.io/durabletask-mssql/#/scaling)) |
195196
| Support for [extension bundles](../functions-bindings-register.md#extension-bundles) (recommended for non-.NET apps) | ✅ Fully supported | ✅ Fully supported | ✅ Fully supported |
196197
| Price-performance configurable? | ❌ No | ✅ Yes (Event Hubs TUs and CUs) | ✅ Yes (SQL vCPUs) |

0 commit comments

Comments
 (0)