You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/storage-considerations.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Storage considerations for Azure Functions
3
3
description: Learn about the storage requirements of Azure Functions and about encrypting stored data.
4
4
ms.topic: conceptual
5
-
ms.date: 07/10/2024
5
+
ms.date: 07/18/2024
6
6
---
7
7
8
8
# Storage considerations for Azure Functions
@@ -96,9 +96,6 @@ A key scenario for Functions is file processing of files in a blob container, su
96
96
97
97
### Trigger on a blob container
98
98
99
-
>[!NOTE]
100
-
>The [Flex Consumption plan](flex-consumption-plan.md) supports only the event-based Blob storage trigger.
101
-
102
99
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:
| Description | Default trigger behavior, which relies on polling the container for updates. For more information, see the examples in the [Blob storage trigger reference](./functions-bindings-storage-blob-trigger.md#example). | Consumes blob storage events from an event subscription. Requires a `Source` parameter value of `EventGrid`. For more information, see [Tutorial: Trigger Azure Functions on blob containers using an event subscription](./functions-event-grid-blob-trigger.md). | Blob name string is manually added to a storage queue when a blob is added to the container. This value is passed directly by a Queue storage trigger to a Blob storage input binding on the same function. | Provides the flexibility of triggering on events besides those coming from a storage container. Use when need to also have nonstorage events trigger your function. For more information, see [How to work with Event Grid triggers and bindings in Azure Functions](event-grid-how-tos.md). |
114
112
115
-
<sup>1</sup> Blob storage input and output bindings support blob-only accounts.
116
-
<sup>2</sup> High scale can be loosely defined as containers that have more than 100,000 blobs in them or storage accounts that have more than 100 blob updates per second.
113
+
1. Blob storage input and output bindings support blob-only accounts.
114
+
2. High scale can be loosely defined as containers that have more than 100,000 blobs in them or storage accounts that have more than 100 blob updates per second.
0 commit comments