I'm using the https://github.com/bbc/sqs-consumer/ SQS Consumer plugin to poll an SQS queue.
At times, the consumer does not receive any message from the queue even though messages are being added to the queue.
Questions
What settings do you suggest I set on the AWS SQS Queue to ensure that the consumer gets every message added to the Queue?
Under what conditions does the Consumer not receive messages added to the Queue? In my case, messages are being added to the queue but the Consumer does not receive them.
WaitTimeInSeconds
must be > 0 and should be 20 unless you have a specific reason to do otherwise. What value are you using now? – Michael - sqlbot