Skip to content

SQS - Quota Issue

0

Hi,

I am using SQS to dynamically create FIFO Queues and add messages to that in our application. Sometimes, when I request to create a new queue, it takes much time than normal, takes about more than 2 minutes. What could be the issue.

Note: I am frequently creating new queue on each request and then delete the queue once data is processed.

  • please accept the answer if it was helpful

1 Answer
1

Instead of creating and deleting queues dynamically, maintain a pool of pre-created FIFO queues. Assign messages to these queues as needed and reuse them. This approach reduces the overhead of queue creation and deletion.

If your use case absolutely requires frequent creation of new queues, consider contacting AWS Support. It looks like a temporary technical issue from the AWS side. As you mentioned, you encounter this "sometimes"

EXPERT
answered 2 years ago
EXPERT
reviewed 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.