Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

which priority order SQS message placed after visibility timeout?

which priority order SQS message placed after visibility timeout?

if my SQS message visibility timeout after 2 minutes, in which order that this SQS message will get received again after 2 minutes ?

is that placed in random / first priority / last priority ?

like image 843
kkurni Avatar asked Nov 19 '22 04:11

kkurni


1 Answers

Its random - unless you are using the new FIFO queues, you can't control or predict the order of the messages you will receive on each call to get a new batch.

like image 55
E.J. Brennan Avatar answered Dec 06 '22 22:12

E.J. Brennan