« Simple queue service » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
(Page créée avec « Category:AWS = Links = »)
 
(4 versions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
[[Category:AWS]]
[[Category:AWS]]
= Links =
= Links =
* [https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-difference-from-amazon-mq-sns.html Differences between Amazon SQS, Amazon MQ, and Amazon SNS]
= Features =
* Message size: 256 KB
* Short polling
** API call to get 10 messages max
* Long polling
** API call and wait X seconds for incoming messages
** less API calls: more efficient and cost effective
* Standard
** Order is NOT guaranteed
** Messages delivered more than once (duplicates)
** Great for performances
* FIFO
** Order is guaranteed
** Messages only delivered once
** Throughput limit 300 messages /s w/o batching, 3000 messages /s with batching

Version du 25 avril 2024 à 13:07

Links

Features

  • Message size: 256 KB
  • Short polling
    • API call to get 10 messages max
  • Long polling
    • API call and wait X seconds for incoming messages
    • less API calls: more efficient and cost effective
  • Standard
    • Order is NOT guaranteed
    • Messages delivered more than once (duplicates)
    • Great for performances
  • FIFO
    • Order is guaranteed
    • Messages only delivered once
    • Throughput limit 300 messages /s w/o batching, 3000 messages /s with batching