Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best Practices for Microsoft Message Queue and Resource Release

I would like to know what are your best practices in using and disposing a message queue. I would also appreciate if there is code especially in the disposing part in order to visualize your concept. The language is in C# or any .NET language will do. The queue that is being used is Microsoft Message Queues.

Currently I am encountering an error that our system is low on resources but our hardware specs are high in memory and disk space.

The specific error message that I am encountering is: Insufficient resources to perform operation.

Any significant or relevant help on this matter is very much appreciated. Thanks in advance for your time.

like image 312
yoitsfrancis Avatar asked Sep 02 '25 16:09

yoitsfrancis


1 Answers

In a load-test we ran in a convoi-situation and had the same issue.

To solve this, we increased the machine quota according to this Blog post

like image 70
Louis Haußknecht Avatar answered Sep 04 '25 05:09

Louis Haußknecht