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
I'm seeing some behavior in a test app I've stood up where a small percentage of functions are being cancelled when under heavy load.
The app is a .NET 9 isolated function with a storage queue trigger.
Example:
Timestamp: 2024-12-12T03:33:23.2017486Z
Function App version: azurefunctions-netiso: 2.0.0+d8b5fe998a8c92819b8ee41d2569d252541
My test function is triggered off a storage queue.
It does the following.
QueueMessage -> Get Blob -> Update Blob -> Call API
For my test I'm spamming the queue with messages and getting anywhere from 50k - 120k requests per minute.
A small percentage of these are failing with a task cancelled exception:
The cancellation is happening at all points in my test app; some during the Get Blob, some during the Update Blob, and some during the API step. 1 seems to have failed before the worker was invoked.
The text was updated successfully, but these errors were encountered:
I'm seeing some behavior in a test app I've stood up where a small percentage of functions are being cancelled when under heavy load.
The app is a .NET 9 isolated function with a storage queue trigger.
Example:
Repro steps
My test function is triggered off a storage queue.
It does the following.
QueueMessage -> Get Blob -> Update Blob -> Call API
For my test I'm spamming the queue with messages and getting anywhere from 50k - 120k requests per minute.
A small percentage of these are failing with a task cancelled exception:
The cancellation is happening at all points in my test app; some during the Get Blob, some during the Update Blob, and some during the API step. 1 seems to have failed before the worker was invoked.
The text was updated successfully, but these errors were encountered: