Hi All,
We are using RABBITMQ for sending messages from Client to server.
Further these messages will be processed and stored in Database.
Here we are using following code to persist the messages in the Queue.
var basicProperties = Channel.CreateBasicProperties();
basicProperties.Persistent = true;
Channel.BasicPublish(exchange, routingKey, basicProperties, body);
It was working properly. But today when we reboot the server all the messages(17K messages) stored in the Queue has been cleared.
Any Reason why the messages were not persisted after server reboot?
Is there Any way to retrieve this messages?
In Physical Disc which location these messages will be persisted?
We are using RabbitMQ 3.7.9 version.
Regards,
Rajan