hai pham
hai pham

Reputation: 29

Using Queue in Azure Storage

I am try to solve 1 problem with using AzureStorage.Queue in .NET.

First, I have 2 project, 1 project Web API, 1 project for WebJob. (All write in .NET Core 2.2)

Thanks for supporting me.

Upvotes: 0

Views: 155

Answers (1)

Doris Lv
Doris Lv

Reputation: 3398

Your queue trigger function consumed the message generate by your API project, and it seems the function did not consume it with a correct format.

Here is an article tells why poison-queue has been generate: Poison messages

When a queue trigger function fails, Azure Functions retries the function up to five times for a given queue message, including the first try. If all five attempts fail, the functions runtime adds a message to a queue named -poison.

Upvotes: 0

Related Questions