Amazon Simple Queue Service: Difference between revisions

Content deleted Content added
m Category:CS1 errors: deprecated parameters: migrate 1/1 |dead-url= to |url-status=; minor cleanup; WP:GenFixes on
Line 7:
| website = {{URL|http://aws.amazon.com/sqs/}}
}}
 
'''Amazon Simple Queue Service''' ('''Amazon SQS''') is a distributed [[message queuing service]] introduced by [[Amazon.com]] in late 2004.<ref>{{cite web|url=http://jeff-barr.com/2014/08/19/my-first-12-years-at-amazon-dot-com/ |title=Jeff Barr's Blog |publisher=Jeff-barr.com |accessdate=2015-08-13}}</ref> It supports programmatic sending of messages via web service applications as a way to communicate over the Internet. SQS is intended to provide a highly scalable hosted [[message queue]] that resolves issues arising from the common [[producer-consumer problem]] or connectivity between producer and consumer.
 
Line 20 ⟶ 21:
Amazon SQS guarantees '''at-least-once delivery'''. Messages are stored on multiple servers for redundancy and to ensure availability. If a message is delivered while a server is not available, it may not be removed from that server's queue and may be resent. {{As of|2007}}, Amazon SQS does not guarantee that the recipient will receive the messages in the order they were sent by the sender. If message ordering is important, it is required that the application place sequencing information within the messages to allow for reordering after delivery.
 
Messages can be of any type, and the data contained within is not restricted. Message bodies were initially limited to 8KB in size but was later raised to 64KB on 2010-07-01<ref>{{Cite web|url=https://forums.aws.amazon.com/ann.jspa?annID=710|archiveurlarchive-url=https://web.archive.org/web/20110829121354/https://forums.aws.amazon.com/ann.jspa?annID=710|deadurlurl-status=ydead|title=AWS Developer Forums: Amazon SQS introduces Free Tier and adds support for Larger Messages and Longer Retention|archivedatearchive-date=August 29, 2011|website=forums.aws.amazon.com}}</ref> and then 256KB on 2013-06-18.<ref>{{cite web|url=http://aws.amazon.com/about-aws/whats-new/2013/06/18/amazon-sqs-announces-256KB-large-payloads/ |title=Amazon SQS and SNS Announce 256KB Large Payloads |publisher=Aws.amazon.com |date=2013-06-18 |accessdate=2015-08-13}}</ref> For larger messages, the user has a few options to get around this limitation. A large message can be split into multiple segments that are sent separately, or the message data can be stored using [[Amazon Simple Storage Service]] (Amazon S3) or [[Amazon DynamoDB]] with just a [[Pointer (computer programming)|pointer]] to the data transmitted in the SQS message. Amazon has made an Extended Client Library available for this purpose [https://github.com/awslabs/amazon-sqs-java-extended-client-lib An extension to the Amazon SQS client that enables sending and receiving messages up to 2GB via Amazon S3. : awslabs/amazon-sqs-java-extended-client-lib].
 
The service supports both unlimited queues and message traffic.