How to consume messages from a queue

160 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 answers

0
Ermiya Eskandary 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.