Time spent sending a message to Amazon SQS

How long does it take to send a message using Amazon Simple Queue?

Also, I would like to know how many messages will be sent in a minute in Amazon SQS?

+3
source share
1 answer

As of 2007, at least one user has received the following results:

threads, msgsPerRead   
1        1             1.389207 sec/msg
100      1             1.3945675675675675 sec/msg
100      10            0.7433736040609137 sec/msg
1        100           0.6860626349892008 sec/msg
10       100           0.6747456021650879 sec/msg
10       10            0.645827935222672 sec/msg

It seems that 1.5 seconds per read is safe for scheduling or 40 views per minute.

+5
source

All Articles