Reputation: 1040
How many messages can be deleted in a single request from Amazon SQS?
I went through the documentation but couldn't find the limit figure.
Upvotes: 4
Views: 1093
Reputation: 3589
There are two ways to delete messages from SQS queue.
And the documentation of DeleteMessageBatch says this -
Deletes up to ten messages from the specified queue.
So, its maximum 10 messages that you can delete form the queue.
Upvotes: 2