skip to Main Content

Number of deleted messages is twice as many as received messages

I created SQS service with terraform resource "aws_sqs_queue" "ses_queue" { name = "ses_queue" message_retention_seconds = 86400 receive_wait_time_seconds = 1 visibility_timeout_seconds = 15 } resource "aws_lambda_event_source_mapping" "send_email_message" { event_source_arn = aws_sqs_queue.ses_queue.arn function_name = aws_lambda_function.send_email_message.function_name batch_size = 5 } I am sending…

VIEW QUESTION

SQS Message Processing

I created a standard queue with the following specs: delay seconds: 0 max receive count (redrive policy): 10 visibility timeout: 300 I have a lambda consumer that receives the messages. From the documentation, it says that you need to explicitly…

VIEW QUESTION
Back To Top
Search