How to consume messages from a queue

168 Views Asked by At

I have a scenario wherein I am supposed to consume messages from an AWS SQS.

I know @SqsListener can be used or something like that?

Thanks

1

There are 1 best solutions below

0
On BEST ANSWER

is there a feature that AWS provides to rate-limit the consumption from SQS

The short & long answer is no.

AWS SDKs do not provide a native way to rate-limit consumption from SQS. It is up to you to implement custom logic to rate-limit message consumption.