Reputation: 1
I am using SQS to hold http requests. How can I keep the message alive (in the queue) to be re-processed when the request fails, without another process grabbing it?
Upvotes: 0
Views: 464
Reputation: 270144
The typical process is:
ReceiveMessage()
to retrieve a message from the queueDeleteMessage()
to permanently remove the messageYour question seems to fit the scenario for using a Dead Letter Queue.
Upvotes: 4