Import data from database to GemFire

423 Views Asked by At

I'am working on a project with GemFire. To import data from database to GemFire, i did a java program that connects to database and to GemFire and then i select data from database and put it in GemFire region. I want to know if there is another possibility to import data continuously from database to GemFire ? or if gemfire has connectors to some databases ?

1

There are 1 best solutions below

2
On BEST ANSWER

The only connector I'm aware of is the GemFire-Greenplum Connector, I don't think there's any other around.

At the top of my mind, another option to insert data into your region from the database would be to use Cache Loaders. Using this approach you really don't need to put data into the GemFire region until someone actually asks for that data.

You might want to have a look at Keeping the Cache in Sync with Outside Data Sources, it contains details about different approaches.

Cheers.