-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Messages randomly not delivered #738
Comments
Hi @nicolasassi, if you want us to investigate the issue, please provide an application reproducing the problem, preferably in a form of GH repo, that we'd be able to run locally. |
I've experience similar behaviour, I have a hunch this is related to the dedletter queue functionality and the way messages ids are being assigned. I've noticed that the messages are pushed directly to the deadletter queue. Was not quite able to confirm the root cause. Removing the deadletter queue from the configuration or raising |
@micossow If you could help me with a logback configuration that would log client calls and internals to the console output I could try to get more insight into this. So far, my configuration only outputs initialisation logs. on 1.3.14: `
|
You can try with debug log messages from akka and elasticmq: <logger name="org.elasticmq" additivity="false" level="DEBUG">
<appender-ref ref="CONSOLE"/>
</logger>
<logger name="akka" additivity="false" level="DEBUG">
<appender-ref ref="CONSOLE"/>
</logger> |
Thanks I got more log data with this. With the following queue config:
The message seems to be moved directly to the deadletter queue, but I still do not see the reason. |
Well, that's how the SQS works. If you receive the message |
Thanks @micossow there is definetly some eagger and unsolicited fetching from happening on the client library side that I have to track down. |
Hi!
I'm using elasticmq with Go and currently this is my pooling implementation:
The problem is, some messages are never delivered and some are delivered with no delay at all.
Using the UI I noticed that the messages which are never delivered increase the counter on the Approximate number of not visible Messages column.
The text was updated successfully, but these errors were encountered: