Skip to content

Commit 0742865

Browse files
authored
More storage table improvements
1 parent 560ce9d commit 0742865

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/azure-functions/storage-considerations.md

Lines changed: 4 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: 07/18/2024
5+
ms.date: 07/30/2024
66
---
77

88
# Storage considerations for Azure Functions
@@ -98,11 +98,12 @@ A key scenario for Functions is file processing of files in a blob container, su
9898

9999
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:
100100

101-
| Consideration | Blob storage (polling) | Blob storage (event-based) | Queue storage | Event Grid |
101+
| Strategy | Container (polling) | Container (events) | Queue trigger | Event Grid |
102102
| ----- | ----- | ----- | ----- | ---- |
103103
| Latency | High (up to 10 min) | Low | Medium | Low |
104104
| [Storage account](../storage/common/storage-account-overview.md#types-of-storage-accounts) limitations | Blob-only accounts not supported¹ | general purpose v1 not supported | none | general purpose v1 not supported |
105-
| Extension version |Any | Storage v5.x+ |Any |Any |
105+
| Trigger type | [Blob storage](functions-bindings-storage-blob-trigger.md) | [Blob storage](functions-bindings-storage-blob-trigger.md) | [Queue storage](functions-bindings-storage-queue-trigger.md) | [Event Grid](functions-bindings-event-grid-trigger.md) |
106+
| Extension version | Any | Storage v5.x+ |Any |Any |
106107
| Processes existing blobs | Yes | No | No | No |
107108
| Filters | [Blob name pattern](./functions-bindings-storage-blob-trigger.md#blob-name-patterns) | [Event filters](../storage/blobs/storage-blob-event-overview.md#filtering-events) | n/a | [Event filters](../storage/blobs/storage-blob-event-overview.md#filtering-events) |
108109
| Requires [event subscription](../event-grid/concepts.md#event-subscriptions) | No | Yes | No | Yes |

0 commit comments

Comments
 (0)