Skip to content

Commit 0626e8d

Browse files
authored
[Functions] Flex updates to Storage considerations
1 parent 36432a5 commit 0626e8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-functions/storage-considerations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Storage considerations for Azure Functions
33
description: Learn about the storage requirements of Azure Functions and about encrypting stored data.
44
ms.topic: conceptual
5-
ms.date: 06/03/2024
5+
ms.date: 07/10/2024
66
---
77

88
# Storage considerations for Azure Functions
@@ -11,7 +11,7 @@ Azure Functions requires an Azure Storage account when you create a function app
1111

1212
|Storage service | Functions usage |
1313
|---------|---------|
14-
| [Azure Blob storage](../storage/blobs/storage-blobs-introduction.md) | Maintain bindings state and function keys<sup>1</sup>. <br/>Used by default for [task hubs in Durable Functions](durable/durable-functions-task-hubs.md). <br/>Can be used to store function app code for [Linux Consumption remote build](functions-deployment-technologies.md#remote-build) or as part of [external package URL deployments](functions-deployment-technologies.md#external-package-url). |
14+
| [Azure Blob storage](../storage/blobs/storage-blobs-introduction.md) | Maintain bindings state and function keys<sup>1</sup>.<br/>Deployment source for apps that run in a [Flex Consumption plan](flex-consumption-plan.md).<br/>Used by default for [task hubs in Durable Functions](durable/durable-functions-task-hubs.md). <br/>Can be used to store function app code for [Linux Consumption remote build](functions-deployment-technologies.md#remote-build) or as part of [external package URL deployments](functions-deployment-technologies.md#external-package-url). |
1515
| [Azure Files](../storage/files/storage-files-introduction.md)<sup>2</sup> | File share used to store and run your function app code in a [Consumption Plan](consumption-plan.md) and [Premium Plan](functions-premium-plan.md). <br/> |
1616
| [Azure Queue storage](../storage/queues/storage-queues-introduction.md) | Used by default for [task hubs in Durable Functions](durable/durable-functions-task-hubs.md). Used for failure and retry handling in [specific Azure Functions triggers](./functions-bindings-storage-blob-trigger.md). Used for object tracking by the [Blob storage trigger](functions-bindings-storage-blob-trigger.md). |
1717
| [Azure Table storage](../storage/tables/table-storage-overview.md) | Used by default for [task hubs in Durable Functions](durable/durable-functions-task-hubs.md). |
@@ -98,7 +98,7 @@ A key scenario for Functions is file processing of files in a blob container, su
9898
### Trigger on a blob container
9999

100100
>[!NOTE]
101-
>The Flex Consumption plan supports only the event-based Blob storage trigger.
101+
>The [Flex Consumption plan](flex-consumption-plan.md) supports only the event-based Blob storage trigger.
102102
103103
There are several ways to execute your function code based on changes to blobs in a storage container. Use the following table to determine which function trigger best fits your needs:
104104

0 commit comments

Comments
 (0)