Skip to content

Commit 9f1032b

Browse files
Merge pull request #290042 from cgillum/patch-18
Add note about support for Durable Entities w/MSSQL
2 parents 67909e2 + 1707fb1 commit 9f1032b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Entity functions define operations for reading and updating small pieces of stat
1818
Entities provide a means for scaling out applications by distributing the work across many entities, each with a modestly sized state.
1919
::: zone pivot="csharp,javascript,python"
2020
> [!NOTE]
21-
> Entity functions and related functionality are only available in [Durable Functions 2.0](durable-functions-versions.md#migrate-from-1x-to-2x) and above. They are currently supported in .NET in-proc, .NET isolated worker, JavaScript, and Python, but not in PowerShell or Java.
21+
> Entity functions and related functionality are only available in [Durable Functions 2.0](durable-functions-versions.md#migrate-from-1x-to-2x) and above. They are currently supported in .NET in-proc, .NET isolated worker, JavaScript, and Python, but not in PowerShell or Java. Furthermore, entity functions for .NET Isolated are supported when using the Azure Storage or Netherite state providers, but not when using the MSSQL state provider.
2222
::: zone-end
2323
::: zone pivot="powershell,java"
2424
>[!IMPORTANT]

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)