History:Trigger Based Replication

From MusicBrainz Wiki
Revision as of 07:56, 15 March 2009 by WikiSysop (talk | contribs) (4 revision(s))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Trigger Based MusicBrainz Data Replication

This approach is based on the following idea:

  1. Each table to be replicated gets three trigger functions added:
    1. One trigger for added rows
    2. One trigger for removed rows
    3. One trigger for changed rows
  1. Each of these triggers will write rows into a replication changes table
  2. A bot will fire off periodically (once an hour) and traverse the replication changes table and dump all the rows since the last bot run to a dump file.
  3. This dump file will be timestamped, compressed and placed onto the FTP server.
  4. An XML file that contains a list of the recent update packages will be available on the FTP server. Clients can download this file to discover what packages they will need in order to come up to speed.

Slaves that wish to keep their data up to date will follow these steps:

  1. Go to the main FTP site and download the update package(s) since it last checked the FTP site.
  2. For each packet, in serial number order, unpack and apply the data with the following steps:
    1. For each new row, add the row.
    2. For an update, replace the row with the new row from the update package
    3. For a deletion, delete the row in question.

The above mentioned replication table will have the following columns:

integer   tableid   (what is the best way to enumerate this in SQL?) 
 
integer   rowid     
 
timestamp ts 
 
tinyint   operation (one of ADD (0), UPDATE (1), REMOVE (2) ) 
 

The dump packets will have the following format, one line per row to be replicated:

tableid <tab> rowid <tab> timestamp <tab> operation <tab> [optional <tab> separated row values for ADD/UPDATE ops) 
 


Is the opensourcing of Postrges's replication solution relevant here? Th press release can be found at http://lwn.net/Articles/46576/