Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Talend Open Studio For MDM + Postgresql + synchronization of two databases

I have two database A and B(replica of A) now one live web application is entering data into A now i want that the entries done in A should be reflected in B.(i.e the changes in A should automatically reflect in B).

My sole purpose is synchronizing two databases and for that i have searched on Talend. I searched and came up with Talend MDM.I have installed MDM .I have searched on it but i am not getting whether it does database synchronization or not.Since there are other talend products like ESB,Data Integration etc. which one of them exactly is for syncing purpose. Please suggest me.

like image 818
Jyoti Kumari Avatar asked Oct 20 '22 19:10

Jyoti Kumari


1 Answers

IHMO, if you are looking for data replication between two databases having the same structure, then Talend is not what you are looking for.

Talend is an ETL tool (Extract Transform and Load). It would be applicable if in your case, your B database had a different structure than A. For that particular use case, you would use Talend in order to define some processing rules :

  1. How do I extract data from A (Extract)
  2. How do I transform A's data into B's data (Transform)
  3. How do I store B's data (Load)

As mentioned by @jayadevan above, I would definitely look for inbuilt replication offered by your database.

like image 178
Jean-Michel Garcia Avatar answered Oct 24 '22 01:10

Jean-Michel Garcia