Yogesh Prajapati
Yogesh Prajapati

Reputation: 4870

Is there any strong support for SQL database to persist rabbitmq message

We have achieved persistent mechanism with activemq as it has built in support to store messages in SQL database.

But our requirement to store message in SQL using rabbitmq but after some research we are unable to find any strong support or help for this.

Any suggestion would be great help to us.

Upvotes: 2

Views: 1509

Answers (1)

Gabriele Santomaggio
Gabriele Santomaggio

Reputation: 22760

RabbitMQ uses Mnesia DB to store the definitions about queues/exchanges etc. and it uses a custom DB to store the messages.

Right now, with RabbitMQ is not possible to use an external database to store the messages as ActiveMQ

maybe in the future.

Upvotes: 2

Related Questions