Hello,
I want to implement publish data and store all the data in my Mongo DB,
but it seems only can use SQL DB.
how can I do that by using DDS publisher? Is there any sample code?
Thanks
Hello,
I want to implement publish data and store all the data in my Mongo DB,
but it seems only can use SQL DB.
how can I do that by using DDS publisher? Is there any sample code?
Thanks
We do not have any products that would do that out of th box. The RTI Database Integration Service only supports MySQL, Microsoft SQL Server, and PostgreSQL. Support for databases can be added via plugins but they need to be relational databases (SQL) which MongoDB is not.
Therefore the only way to do this would be for you to write a "bridge" application that subscribes to DDS and writes to MongoDB. There are a couple of ways to do this:
Dependin on the use-case the second approach may be faster as it allows you to leverage all the routing service infrastructure and limits what you need to do to implementing the Routing Service Adapter interfaces.
Gerardo
Hello Gerardo Pardo,
Thank you very much for your suggestion. It is very clear and it helps me a lot.
I will try to implement it!
Thank you very much.
Kay