History:Trigger Based Replication: Difference between revisions

From MusicBrainz Wiki
Jump to navigationJump to search
m (4 revision(s))
 
(prettyfy)
Line 21: Line 21:
The above mentioned replication table will have the following columns:
The above mentioned replication table will have the following columns:


<pre>integer tableid (what is the best way to enumerate this in SQL?)
integer tableid (what is the best way to enumerate this in SQL?)
</pre>
integer rowid

<pre>integer rowid
timestamp ts
</pre>

tinyint operation (one of ADD (0), UPDATE (1), REMOVE (2) )
<pre>timestamp ts
</pre>

<pre>tinyint operation (one of ADD (0), UPDATE (1), REMOVE (2) )
</pre>


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


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


----
----



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

Revision as of 21:29, 19 March 2009

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/