amazon-sqs Questions

8

Solved

I'm not sure if I understand AWS Lambda - SQS triggers correctly. Can I possibly configure it in such a way that one SQS queue can trigger different lambda functions depending on the message body o...
Darkroom asked 12/6, 2020 at 17:0

2

Solved

I try to get all spans created in the following chain associated to the same trace context/traceId by context propagation: service1 -> aws sqs queue -> service2 Auto. context propagation is n...
Megaspore asked 18/6, 2022 at 11:1

6

I switched to a FIFO queue and I got this error message when I tried to delete a message from the queue Value {VALUE} for parameter ReceiptHandle is invalid. Reason: The receipt handle has expired...
Lolanthe asked 9/10, 2017 at 7:22

2

Solved

I have a table in AWS Dynamodb and i need send message to AWS SQS when a new item is created. So i want my Dynamodb to be triggered at that exact moment when created new item, a message for the AW...
Goth asked 4/10, 2018 at 23:34

2

Solved

Currently, I have an AWS SQS as a trigger to my AWS Lambda function. I would like to implement long polling to reduce costs since I've used up 70% of my monthly free tier, mostly from empty receiv...
Exequies asked 19/11, 2018 at 9:55

5

Solved

I am trying to make SqsListener work but I can't with Spring Boot 3, it simply doesn't receive anything. When I change Spring Boot version back to 2.X everything's work perfectly. I am using 2.4.2 ...

3

Solved

I am trying to set up a demo environment to try out SQS as an AWS Event Bridge Source. I tried uploading few documents to SQS to see if Event Bridge detects any change, but I don't see any events t...

2

I have my model written and trained in Keras. I'm trying to use it for inference in production. I receive SQS "task" messages containing a tuple of (path_in, path_out). I can obviously use: BATCH...
Eyra asked 2/5, 2020 at 15:47

5

Solved

I don't want the message to count as "read" but I'd like to know what's in the queue. The documentation: http://boto.s3.amazonaws.com/ref/sqs.html#module-boto.sqs Isn't very straight forward abou...
Expendable asked 11/4, 2012 at 5:48

11

Solved

I am trying to prototype a distributed application using SNS and SQS.I have this topic: arn:aws:sns:us-east-1:574008783416:us-east-1-live-auction and this queue: arn:aws:sqs:us-east-1:5740087834...
Boulogne asked 8/5, 2011 at 10:3

7

Just a simple question, but I can't seen to find the answer. Is it possible to use the API, to get the queue size (the number of messages/jobs waiting to be processed) of an AWS SQS queue? Prefe...
Rant asked 17/8, 2014 at 16:22

3

I am using AWS Lambda function to process the messages in Queue it's working fine. But i need to execute this Lambda function when messages available or added in SQS queue. Is it possible to trigg...
Nappie asked 14/12, 2016 at 7:59

3

I am having Lambda function that I expect to return some result. So if I send wrong parameters it fails for example in the middle of the function. Is there a way I can handle if any error occurs t...
Tobey asked 18/10, 2018 at 11:45

2

Solved

I have a system design like this SQS -> trigger -> Lambda -> if fails -> DLQ pre condition Lambda function using a try catch block , it won't throw any errors . Lambda function never run out of...

1

I'm trying to send a batch of items to Amazon SQS using Spring Cloud. I'm able to send individual items. However, the time to send it to the queue tends to be multiplied by the number of items I'm ...
Dissection asked 27/1, 2017 at 7:28

5

Solved

I could have sworn that there was an easy way to change the batch size of an SQS queue that is configured as a Lambda trigger, but as of July 2020 I can no longer find where this happens. This may ...
Piselli asked 28/7, 2020 at 18:7

6

Solved

Today I have been trying to setup Celery using AWS SQS as the broker, however upon excututing the following: test.py from celery import Celery access_key_id = '********************' secret_acce...
Ahmad asked 21/11, 2017 at 23:47

10

I am trying to set up a workflow with serverless that creates a new S3 bucket, a new SQS queue and when an object is created in the S3 bucket, puts a messages on the queue and spins up a lambda onc...

17

Solved

How can I automatically move messages from a dead letter queue back to the original queue in Amazon SQS?
Scapegrace asked 20/8, 2014 at 15:3

5

I have created aws SQS with lambda trigger. The issue I facing, is when message is send from sqs the lambda trigger automatically disconnected and also no log is generated in cloudwatch (log stream...
Lum asked 22/10, 2018 at 5:41

3

Solved

How can I add the below listed SQS permission using AWS CLI command? "Statement": [ { "Sid": "Sid8390000202", "Effect": "Allow", "Principal": "*", "Action": "SQS:*", "Resource": "arn:aws:sq...
Wapiti asked 30/7, 2019 at 19:59

3

Solved

The AWS documentation states consistently that ARNs should not be constructed programmatically from names or URLs, because the way those strings are constructed is not guaranteed to be constant in ...
Mellott asked 10/9, 2018 at 13:15

2

We are using the following version of Boto to write to SQS - boto3==1.7.16 botocore==1.10.16 The code is running successfully in production environment, but once in a while we see the followin...
Diclinous asked 7/6, 2018 at 3:50

9

Solved

I am attempting to get spring cloud to work with messaging using auto configure. My properties file contains: cloud.aws.credentials.accessKey=xxxxxxxxxx cloud.aws.credentials.secretKey=xxxxxxxxxx...

2

Solved

According to documentation the maximum SQS message retention period(MessageRetentionPeriod) is 14 days. After that time message will be deleted from the queue. Is any way with SQS to not lose these...
Abdominous asked 2/8, 2016 at 16:32

© 2022 - 2024 — McMap. All rights reserved.