amazon-sqs Questions

2

Solved

I am trying to setup a EC2 Scaling group that scales depending on how many items are in an SQS queue. When the SQS queue has items visible I need the Scaling group to have 1 instance available and...
Capillarity asked 19/3, 2017 at 18:16

2

I have an sqs queue in the same account and region, for some new features testing I have deployed my UAT code on prod environment with different config it's a connect process where one process pass...
Package asked 28/5, 2019 at 8:41

4

Solved

I have the following function that gets a message from aws SQS, the problem is I get one at a time and I wish to get all of them, because I need to check the ID for each message: function getSQSMe...
Losel asked 1/5, 2019 at 9:54

1

I am serializing php objects using php serialize(). However, it adds null bytes in the result for protected member variables. This result is then passed as a message to an Amazon SQS queue. The pro...
Bissau asked 2/5, 2017 at 6:4

1

Solved

I am implementing a SQS subscriber using spring boot and after a few research on internet I have found the project spring-cloud. Use the annotation @SqsListener looks pretty easy to receive message...
Lamppost asked 20/5, 2021 at 0:45

3

There are 2 sqs listener in my project. I want one of them to have the same setting and one of them different setting. The only value I want to change is maxNumberOfMessages. What is the most prac...
Baptism asked 14/3, 2019 at 13:6

1

I have the following code in a lambda: entries = [ { "Id": str(index), "MessageAttributes": {}, "MessageBody": json.dumps( to_format(record=record, id_names=IDENTIFIERS, attr_names=ATTRIBUTE...
Simonsen asked 31/1, 2020 at 3:42

3

Solved

I have a lambda configured to be triggered when messages are published to SQS queue. Here is the SAM template for deployment. MyQueue: Type: AWS::SQS::Queue Properties: VisibilityTimeout: 180 ...
Hosmer asked 3/4, 2019 at 8:33

3

Solved

Bit of background, I'm using Serverless and .Net to create a lambda with a SQS trigger. The event trigger is set with batch size of 10k and wait time (Batch Window ie MaximumBatchingWindowInSeconds...
Spiccato asked 13/4, 2021 at 13:50

2

Solved

I am trying to create an AWS SQS Dead Letter Queue, using the serverless framework The idea is to have a SQS to trigger a Lambda function, and have another SQS as a DeadLetterQueue, ie. to pick up ...
Jackofalltrades asked 16/7, 2020 at 12:48

1

I have added to our custom event bus a FIFO queue as a target. When eventbridge is connected to a fifo queue the MessageGroupId property is required. Is it possible to configure dynamically that ...
Lalise asked 21/4, 2020 at 11:28

4

Solved

I have a situation when a msg fails and I would like to replay that msg with the highest priority using python boto package so he will be taken first. If I'm not wrong SQS queue does not support pr...
Brotherton asked 10/3, 2015 at 17:29

2

maybe someone has an idea to my following problem: I am currently on a project, where i want to use the AWS SQS with Spring Cloud integration. For the receiver part i want to provide a API, where ...
Robertson asked 28/9, 2016 at 18:44

1

I first create a queue: const notificationQueue: sqs.IQueue = new sqs.Queue(this, `${domain}-notificationsQueue`, { queueName: `${domain}-notificationsQueue.fifo`, fifo: true, contentBasedDedupl...
Rhodos asked 28/3, 2021 at 20:11

4

Solved

For now I have tried to filter the messages based on Message Attribute Name="Class". As you can see in the below code //Specify attribute list List<string> AttributesList = new List<str...
Razid asked 17/5, 2018 at 10:13

3

Is it possible to send a messaging request to Amazon's SQS directly from javascript? I'm trying to create a logging system and would love to bypass sending the request to a middleman server. Also, ...
Rapture asked 6/12, 2011 at 0:29

3

Solved

I am trying to develop an AWS Lambda function that is triggered by events from SQS. I am using the spring-cloud-function-adapter-aws (version 1.0.0.RELEASE) and in specifically a SpringBootRequest...
Baugher asked 10/8, 2018 at 20:47

1

Solved

I want to use API Gateway to send a message to SQS which then needs to trigger Lambda. After calculations are finished within Lambda, I need to pass the results back to API Gateway. In other words,...

2

I have set up a FIFO queue and I'd like to partition messages by a message group ID. As an event trigger, I'm using a lambda function. Now my question: Is it possible to allow only one concurrent...
Fourflusher asked 25/11, 2019 at 11:44

4

I want to send s3:CreateObject:* events to a SQS Queue. But setting up the notification configuration results in A client error (InvalidArgument) occurred when calling the PutBucketNotificationConf...
Earring asked 29/12, 2015 at 15:57

1

I have a queue from which messages are being read as soon as I send some message in it. I have not configured Dead Letter Queue, so messages should always be there if processing of sent message yie...
Monaco asked 20/6, 2019 at 9:56

2

Solved

I have been trying to wrap my head around this, but I can't seem to get it to work. I can drill down into 'Messages' by specifying it in the sqs polling, but can't get deeper in: I am retrieving a...
Becka asked 1/10, 2019 at 20:15

4

We are trying to setup Amazon SQS between two AWS applications. Management wants to track cost associated with all Amazon resources. Is it possible to tag Amazon Simple Queue Service resources?
Stimulative asked 31/8, 2015 at 21:50

3

Solved

I have the following method in my Java class: public class AwsHelper { private AmazonSQS sqs; private void sendMessageToQueue(String message){ sqs = AmazonSQSClientBuilder.defaultClient(); ...
Outrank asked 29/1, 2021 at 15:2

2

Solved

I have requirement to publish messages from SNS to kinesis. I have found that, it is not possible directly by subscribing same as SNS/SQS. I will need to write lambda to fetch from SNS and publish ...
Mitrewort asked 21/5, 2018 at 13:38

© 2022 - 2024 — McMap. All rights reserved.