125 questions
1
vote
1
answer
204
views
What are the rate limits for SQS FIFO with high throughput enabled?
We're getting below responses while pushing data to SQS FIFO:
Code=RequestThrottled, Message=Request is throttled
We have recursive retries in place, and this error is coming up for the first few ...
2
votes
1
answer
70
views
Are in-flight messages still deduplicated in an AWS SQS FIFO queue?
If the producer sends a message to an SQS FIFO queue while another message with the same de-duplication ID is in-flight (read by the consumer but not yet committed), will the new message be dropped as ...
0
votes
0
answers
84
views
Amazon SQS FIFO Consumer Stops Processing Events Until Restart
I am using Amazon SQS FIFO to process events received from a Salesforce subscription. Each event contains a recordId, and we use it to call the Salesforce API to fetch additional details before ...
0
votes
0
answers
218
views
Lambda getting triggered by SQS but not receiving event
I am sending a message to SQS FIFO which triggers the lambda.
The message is received as shown in console, and the lambda is triggered, but the event is empty when read by the lambda function.
...
...
1
vote
0
answers
223
views
Does SQS FIFO have any Issues with many MessageGroupIds?
I'm fairly new to working with FIFO SQS, and a question has emerged. Does using many different MessageGroupIds have any performance downsides or raise any concerns?
I'm working with an order queue and ...
1
vote
0
answers
177
views
Unable to Retrieve MessageGroupId from SQS FIFO Queue Messages in Java SDK
[I am working with an AWS SQS FIFO queue and have sent several messages with different MessageGroupIds. However, when I try to retrieve the MessageGroupId from the received messages using the AWS SDK ...
0
votes
0
answers
241
views
Junit test cases failing for static method with java.lang.NoSuchFieldError: PASCAL_CASE_TO_CAMEL_CASE error
creating the sqs object to publish message to sqs queue.
public final class ClientFactory {
private SqsClientFactory() {
throw new ConstructorCallForbiddenException();
}
...
0
votes
0
answers
42
views
SQS FIFO Queue Integration with Lambda - Ordering Issue during Errors
We are having a NodeJs Lambda which is triggered by an SQS FIFO Queue. The SQS Queue Settings are as follows:
"sourceQueue": {
"Type": "AWS::SQS::Queue",
&...
2
votes
1
answer
169
views
does SNS FIFO topic's message retries to SQS FIFO Queue in strict sequence?
We are working on one pub-sub architecture, where we want to use SNS for fan out to multiple SQS Queues. We have a requirement of strict sequence i.e. events should be in sequence for each clients.
...
1
vote
1
answer
82
views
Get an AWS FIFO SQS queue to output multiple messages as one event
I have a FIFO SQS queue connecting two Lambda functions. Each SQS message is sent by the first Lambda function and consumed by the second Lambda function. If multiple SQS messages are sent within a 5 ...
2
votes
1
answer
447
views
Amazon SQS FIFO Queue with Multi-Threaded Consumer - Ensuring Order Per MessageGroupId
I have a Spring Boot Java application that consumes messages from an Amazon SQS FIFO queue using the @SqsListener annotation. My consumer is multi-threaded, and I have maxConcurrentMessages set to 5, ...
1
vote
0
answers
237
views
How many listeners running parallelly while using @SqsListener in spring boot application
I have a spring-boot based application and I am using AWS SQS fifo queue. To poll the messages from the queue, I have used aws spring cloud SqsListener.
I have a use case with FIFO SQS queue having ...
0
votes
1
answer
99
views
AWS SQS message stuck in "available" state
I am using AWS SQS in my project. I do not have full knowledge about how does it works but as you can see the count in messages available state is increasing .
The messages available is piling up and ...
-1
votes
1
answer
71
views
Lambda not working trigger message from SQS FIFO, but it does from SQS Standard
i just created lambda function that have trigger from SQS FIFO, but somehow not working.
Already add the AWSLambdaSQSQueueExecutionRole and AmazonSQSFullAccess to the lambda, but seems not working.
...
1
vote
0
answers
377
views
How to Stop FIFO SQS Messages from being placed in a Batch with Failing Messages?
The general setup for this question is best described in the following article: Solving Complex Ordering Challenges with Amazon SQS FIFO Queues.
The concept is that we are working with an auctioning ...