Database Mirroring

9

I'm developing an application on Java using database PostgreSQL , locally. Well I would like to know if there is a way to mirror this my local bank to an external server?

Is there any API in Java for this?

If you can help me, I really appreciate it.

    
asked by anonymous 30.07.2015 / 03:29

1 answer

1

The process of synchronizing data between different instances of the DBMS can be done in several ways, but usually through a process known as replication.

There are several products that provide a solid platform for replication, some free, some paid. The most important thing is to understand the motivator of this need, to then understand which architecture would meet your need.

In general, writing a Java program to replicate data between servers should be the only solution chosen if no available alternatives solve your problem.

    
31.07.2015 / 03:42