Questions tagged [aws-sqs-fifo]
100 questions
0
votes
1 answer
My lambda function is not receiving events from the SQS service
I have set up a lambda function and an SQS service. I want the events from the SQS service to get consumed by the lambda function.
SQS configuration
All the other configuration is set to match the default.
Lambda trigger
Lambda configuration
The…

Antonio Gamiz Delgado
- 1,871
- 1
- 12
- 33
0
votes
1 answer
How to get to the $response property in the AWS SQS SendMessageResult with typescript?
I'm sending a message to an SQS queue as follows in typescript:
const queueName = 'some_queue_name';
const foo = 'foo';
const bar = 'bar';
const sqs = new AWS.SQS();
const SendMessageRequest: AWS.SQS.SendMessageRequest = {
MessageBody:…

pikovayadama
- 808
- 2
- 8
- 26
-1
votes
0 answers
SQS exactly-once but repeatable
I am already able to implement exactly-once processing using FIFO SQS queues. If a certain message is already in the queue, I understand it wont add any more duplicates within the 5-minute interval.
But after the message is processed successfully…

voldomazta
- 1,300
- 1
- 10
- 19
-1
votes
1 answer
How AWS SQS API requests count logic works?
I am using SQS Batching using a Java client(AmazonSQSBufferedAsyncClient) for sending messages to SQS. I am sending 10 messages in one batch, But SQS monitoring is showing the "Number Of Messages Sent" is 10. Same for "Number Of Messages Received"…

Akashsingla19
- 690
- 2
- 8
- 18
-1
votes
1 answer
AWS SQS FIFO event messageAttributes example?
For AWS SQS FIFO queues, on AWS official documentation, I could not find any clear examples for the format of the messageAttributes object (which is a sub-object within the event object, aka the queue message event object).
Can anyone provide an…

REN
- 65
- 6
-1
votes
1 answer
AWS SQS sent 4 messages but lambda invoked twice
My SQS FIFO triggers lambda function. SQS sent 4 messages but lambda invoked twice. Concurrency is "Unreserved account concurrency & 1000". What can go wrong?

anilraj
- 53
- 7
-1
votes
1 answer
AWS SQS (FIFO) trigger lambda if its not in running state
I want to trigger a AWS lambda from SQS (FIFO), which is successfully done, but according to my use case there will be multiple tenants with there own SQS FIFO queue, for the multiple tenants there will be only one lambda which will be triggered…

balajivaishnav
- 2,795
- 4
- 23
- 38
-1
votes
1 answer
Can I use AWS FIFO Queue with AWS SNS Standard Topic?
Looking at the SNS & SQS documentation, I couldn't find a specific article that mentioned this combination.
Physically I found it's possible to create a subscription of a FIFO queue to a Standard Topic. However, in the AWS console for SQS FIFO…

Alex Agranov
- 33
- 5
-1
votes
1 answer
Lambda is not receiving the messages from AWS SQS
I am pushing 5 messages to the SQS and expecting that my lambda should get those 5 messages and just log, when i trigger the function I see that the publisher lambda is pushing 5 messages to the sqs but the consumer lambda is not getting those 5…

Abhishek wagh
- 1
- 2
-3
votes
1 answer
What is the behaviour of SQS FIFO queue after visibility timeout expires?
After visibility timeout expires, will the message go to same consumer or different consumer in FIFO queue?
To ensure message ordering, message has to be added at the head of the queue in case of visibility timeout expiry. Is this assumption…

gelivi
- 1