About 1,070,000 results
Open links in new tab
  1. What is the difference between Amazon SNS and Amazon SQS?

    Dec 3, 2012 · AWS SQS is a queue service, which stores messages in a queue. SQS cannot deliver any messages, where an external service (lambda, EC2, etc.) is needed to poll SQS …

  2. How to peek at messages in the queue - Stack Overflow

    There is no longer a true peek function available in SQS but you can probably accomplish what you want by simply using get_messages and setting the visibility_timeout quite low. As long as …

  3. Why do SqS messages sometimes remain in-flight on queue

    Nov 5, 2013 · I'm using Amazon SQS queues in a very simple way. Usually, messages are written and immediately visible and read. Occasionally, a message is written, and remains In …

  4. SQS - Delivery Delay of 30 minutes - Stack Overflow

    Aug 7, 2015 · Using AWS:SQS to mimic a cron job is bad idea. AWS:SQS offers eventual delivery, it does not guarantee that message will be delivered exactly after the delay_seconds …

  5. amazon web services - SQS vs RabbitMQ - Stack Overflow

    Feb 24, 2015 · SQS would be my preference over RabbitMQ, here is why. SQS is a managed service. So you don't have to worry about operational aspects of running a messaging system …

  6. Using Amazon SQS with multiple consumers - Stack Overflow

    May 18, 2015 · I have a service-based application that uses Amazon SQS with multiple queues and multiple consumers. I am doing this so that I can implement an event-based architecture …

  7. Understanding SQS message receive amount - Stack Overflow

    Aug 11, 2022 · A way to overcome it is to set a batch size + maximum batching window to the Lambda SQS trigger, so that messages are "batched" before being sent once to a consumer …

  8. Best way to delete messages from SQS during development

    Mar 16, 2017 · Tried that from AWS console on an SQS queue with delay property set and clients long-polling that queue. PurgeQueue didn't purge the messages. Had to stop the long-polling …

  9. apigateway websocket sqs integration - Stack Overflow

    Feb 16, 2019 · I am trying to integrate an API Gateway WebSocket Route with SQS. I have configured the SQS Integration with below properties AWS Region: ap-southeast-1 AWS …

  10. Is it necessary for a Lambda to delete messages from an SQS …

    41 The key here is that you are using the AWS Lambda integration with SQS. In that instance AWS Lambda handles retrieving the messages from the queue (making them available via the …