amazon-sqs Questions

3

Solved

My use case is as follows: I need to be able to schedule SQS messages in such a way that scheduled messages can be added to a queue on a specific date/time, and also on a recurring basis as needed....
Formwork asked 11/9, 2017 at 19:55

2

Solved

How do I instantiate a .NET AWSSDK SQS client that has both a custom Region and ServiceURL? More information: I have a queue set up in localstack that I can verify is there through an sqs list-que...

1

Solved

I have an EC2 instance with the below IAM policy attached to its role: { "Statement": [ ... other Allow statements here { "Action": "sqs:*", "Effect": &...
Jonejonell asked 5/9, 2023 at 9:37

5

I need to replace my redis broker with SQS broker, while googleing it I came across many pages which tell how to use SQS with celery. As per my understanding, it creates own SQS queue, I have only ...
Cuttlefish asked 28/3, 2017 at 6:29

2

Solved

We are introducing SNS + SQS to handle event production and propagation in our micro services architecture, which has so far relied on HTTPS calls to communicate with each other. We are considering...
Sarre asked 21/3, 2020 at 14:35

6

Solved

I have a simple class named QueueService with some methods that wrap the methods from the AWS SQS SDK for Java. For example: public ArrayList<Hashtable<String, String>> receiveMessages...
Tortoni asked 20/12, 2017 at 18:1

2

Solved

I am trying to use x-ray to trace requests which use an SNS-SQS fanout pattern. The request comes from API GW, lambda proxy integration, published to SNS and delivered to a subscribed SQS which ha...
Out asked 30/5, 2019 at 11:9

6

Solved

I am using boto library in Python to get Amazon SQS messages. In exceptional cases I don't delete messages from queue in order to give a couple of more changes to recover temporary failures. But I ...
Pediculosis asked 10/8, 2012 at 12:3

4

Solved

I'm trying to get a toy example up and running with an AWS Lambda function, f, that's triggered by a message on one SQS queue, sqs, publishes to another queue sqs', and then a worker, f' reads from...
Cowry asked 21/8, 2018 at 18:29

6

Solved

I have a Lambda with an SQS trigger. When it gets hit, a batch of records from SQS comes in (usually about 10 at a time, I think). If I return a failed status code from the handler, all 10 messages...
Julide asked 3/4, 2019 at 14:42

3

Solved

For clarification, what I'm trying to do is fire off a Fargate task when theres an item in a specific queue. I've used this tutorial to get pretty much where I am. This worked fine but the problem ...

2

Solved

After posting a message with an attribute to SQS with the following code before sending it (and checking in SQS console to see if everything is posted correctly)... messageRequest.addMessageAttrib...
Logography asked 3/8, 2014 at 18:8

1

I have code below to receive message and an attribute from the AWS SQS. The message body is as expected. However, the attribute "sourceId" is always taking the message body json as value....
Katiakatie asked 16/5, 2023 at 23:25

11

Solved

I know SQS ain't built for that, but I'm curious is it possible to find messages in a queue that meet some criteria? I can pull messages in a loop, search the message bodies for some pattern (witho...
Jephum asked 27/9, 2012 at 22:9

8

Solved

From the documentation of SQS, Max time delay we can configure for a message to hide from its consumers is 15 minutes - http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs...
Dauphin asked 7/8, 2015 at 15:29

13

Solved

I have a use case where there will be stream of data coming and I cannot consume it at the same pace and need a buffer. This can be solved using an SNS-SQS queue. I came to know the Kinesis solves ...
Stilt asked 29/10, 2014 at 6:1

1

I am able to successfully schedule a redshift query, which is not very fancy. Just simple truncate and load. I also created a SNS topic and attached to this query. I am getting an email notificatio...

2

Trying to create SQS Poller which: Do exponential polls (to reduce number of request if there is no messages present in the queue) Query SQS more often if there are a lot of messages in queue Hav...
Disulfide asked 16/6, 2018 at 0:1

2

I have a long running batch job that am planning to move to AWS Batch. Since it takes couple of hours to run this job, I cant use AWS Lambda. But, one of the requirement is to trigger this job from...
Parris asked 16/9, 2021 at 11:40

2

Solved

I would like to send all Cloudwatch logs where the message of the console.log (appearing in my Cloudwatch logs) matches a certain pattern( for example including the word "postToSlack", or having a ...
Thorite asked 12/11, 2018 at 22:2

2

Solved

I want to save all SNS messages to S3 so I can keep a complete history. The purpose is to have the ability to go look back when diagnosing and issue, later index and use this to audit, replay, rebu...
Greenlet asked 4/1, 2019 at 0:3

4

Solved

I am using Spring Cloud SQS messaging for listening to a specified queue. Hence using @SqsListener annotation as below: @SqsListener(value = "${QUEUE}", deletionPolicy = SqsMessageDeletionPolicy....
Atomism asked 27/2, 2018 at 22:47

4

I have connected an Api Gateway method to push onto a SQS Queue by following this tutorial. https://dzone.com/articles/creating-aws-service-proxy-for-amazon-sqs This all works fine but I would li...
Irrelevant asked 18/10, 2018 at 15:22

3

Solved

I have a list of integers (integerList) that I'd like to pass into an SQS queue where each message into the queue is an integer from the list. I can do this one message at a time with the send_me...
Gnarly asked 6/6, 2019 at 20:10

4

Solved

I have a SQS queue and I want to trigger a lambda function when a message arrives in the queue. I have written the lambda function and that works successfully when I click the "Test" button. When I...
Malacology asked 2/4, 2019 at 10:52

© 2022 - 2024 — McMap. All rights reserved.