-1

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

Rahul
  • 91
  • 1
  • 11
  • https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-delay-queues.html https://stackoverflow.com/a/40752610 – niko Jun 08 '22 at 15:52
  • 1
    Thanks @niko. I'll try this and update here if it serves the purpose. – Rahul Jun 08 '22 at 16:30

1 Answers1

0

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.

Ermiya Eskandary
  • 15,323
  • 3
  • 31
  • 44