I am looking to integrate Apache Geode with Postgresql DBMS but not able to find steps to configure Geode to connect and retrieve data from Postgresql. Any suggestions?
Asked
Active
Viewed 116 times
1 Answers
0
I'd suggest to have a look at Keeping the Cache in Sync with Outside Data Sources, it basically explains how you can keep the distributed cache in sync with an external data source by the usage of Geode plug-ins for your regions. There's also an example regarding how you can configure your database connection using JNDI (PostgreSQL
included).
Cheers.

Juan Ramos
- 1,421
- 1
- 8
- 13
-
Hey Juan, Thanks for suggestions, I did go through the documentation and tried the approach but that doesn't work. I am looking for a detailed example of anyone has practically integrated this approach. Thanks again! – user15745048 Apr 25 '21 at 07:40
-
Maybe you can try [this one](https://github.com/apache/geode-examples/tree/develop/jdbc)?. It's for `MySQL`, not `PostgreSQL`, but the steps are basically the same, you probably just need to replace the driver. – Juan Ramos Apr 26 '21 at 08:37