Please advise what am i doing wrong here ... #1395
Replies: 1 comment
-
Thanks for using RabbitMQ and the .NET client. It is very difficult to make suggestions based on short, incomplete code snippets. I can't really tell what you're trying to do in your If you would like us to assist you, you should share two console applications - one that publishes messages, and one that consumes them, that demonstrates the issue you are having. Please share them via a git repository (via GitHub or GitLab). I should be able to clone it, and run |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am having an issue like this :
A publisher publishes X messages to a Q, say X=2,345,678 (issue occurs on large amount ...)
When A consumer is consuming the massages after the publisher completed - all X messages processed fine!
When the consumer is consuming the massages while the publisher is publishing, the consumer is processing less messages ...
One important thing to mention : i need to process batch (so i can push a batch to SQL Server) - so i am collecting the messages in a Data Table and a timer is pushing them to the DB and Ack the message, clearing the table etc.
If i am acknowledging the messages right after i add them to the data table - all works well, here is a snapshot of my code :
Timer Code :
Please advise what am i doing wrong here ... ?
Thanks!!
Beta Was this translation helpful? Give feedback.
All reactions