What you need that for?
If you want to use a Database, just use the Database directly.. store
and retrieve.
If you need a wake up call into somewhere to recover data.. just send
non persistent messages over ActiveMQ or Artemis.
on the sender / producer:
somemethodThatstoreData(mongoDBConnection)
producer.send(messageWithSomeID)
on the receiver / consumer
onMessage(Message message) {
someThodThatProcessDataOnMong(mongDBConnection, datafromMessage);
}
The reason I mention this is that on a messaging system, the data is
transient, usually not meaning anything for you since it's all Blobs,
messages...
On Mon, Oct 14, 2019 at 10:27 AM xUmaRix <[email protected]> wrote:
>
> Hi,
>
> I stumbled upon this https://github.com/kimmking/activemq-store-mongodb
> <https://github.com/kimmking/activemq-store-mongodb>
>
> I try to build it into ActiveMQ 5.15.10 but it does not loaded when run.
>
>
>
> Appreciate if anyone could help me to build this.
> We need to store the persistence data in mongodb
>
> Thanks and Regards,
> Umari
>
>
>
> --
> Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html
--
Clebert Suconic