postgresql/contrib/rserv
Tom Lane ec8576114f Some more gitignore cleanups: cover contrib and PL regression test outputs.
Also do some further work in the back branches, where quite a bit wasn't
covered by Magnus' original back-patch.
2010-09-22 17:22:31 -04:00
..
.gitignore Some more gitignore cleanups: cover contrib and PL regression test outputs. 2010-09-22 17:22:31 -04:00
ApplySnapshot.in This simple patch fixes broken Makefile, broken ApplySnapshot and 2002-03-06 20:41:36 +00:00
CleanLog.in This simple patch fixes broken Makefile, broken ApplySnapshot and 2002-03-06 20:41:36 +00:00
GetSyncID.in This simple patch fixes broken Makefile, broken ApplySnapshot and 2002-03-06 20:41:36 +00:00
InitRservTest.in rserv replication toolkit from Vadim Mikheev. 2000-12-20 17:22:35 +00:00
Makefile Fix contrib/rserv to install successfully when built outside source tree. 2002-11-01 23:45:37 +00:00
MasterAddTable.in rserv replication toolkit from Vadim Mikheev. 2000-12-20 17:22:35 +00:00
MasterInit.in Well, this patch makes Makefile for contrib/rserv use the 2002-10-09 16:23:55 +00:00
MasterSync.in This simple patch fixes broken Makefile, broken ApplySnapshot and 2002-03-06 20:41:36 +00:00
PrepareSnapshot.in This simple patch fixes broken Makefile, broken ApplySnapshot and 2002-03-06 20:41:36 +00:00
README.rserv Rename undocumented utility SyncSyncID to MasterSync. 2000-12-21 15:26:04 +00:00
RServ.pm Back out rserv changes that would allow limit of replicated tables --- 2003-06-25 21:37:53 +00:00
Replicate.in Back out rserv changes that would allow limit of replicated tables --- 2003-06-25 21:37:53 +00:00
RservTest.in rserv replication toolkit from Vadim Mikheev. 2000-12-20 17:22:35 +00:00
SlaveAddTable.in rserv replication toolkit from Vadim Mikheev. 2000-12-20 17:22:35 +00:00
SlaveInit.in Rename undocumented utility SyncSyncID to MasterSync. 2000-12-21 15:26:04 +00:00
master.sql.in Add a bunch of pseudo-types to replace the behavior formerly associated 2002-08-22 00:01:51 +00:00
regress.sh Rename undocumented utility SyncSyncID to MasterSync. 2000-12-21 15:28:05 +00:00
rserv.c Error message editing in contrib (mostly by Joe Conway --- thanks Joe!) 2003-07-24 17:52:50 +00:00
slave.sql.in rserv replication toolkit from Vadim Mikheev. 2000-12-20 17:22:35 +00:00

README.rserv

erServer demonstration implementation
(c) 2000, Vadim Mikheev and Thomas Lockhart, PostgreSQL Inc.

Version 0.1:
  Replicates a master database to a single slave database.
  Tested under Linux (Mandrake 7.2).

Requirements:

- PostgreSQL >= 7.0.X
  A separate Makefile is required for PostgreSQL 7.0.x and earlier
- Perl5 and the PostgreSQL perl interface
- TCL and the PostgreSQL tcl interface (for demo only)


How to compile:

- make all
- make install

Scripts and libraries are installed in places which are consistant
with the way other contrib/ code is installed; underneath the core
items in a contrib/ directory.


The toolset:

MasterInit dbname
  sets up structures and user-defined functions for a master
  database. 

SlaveInit dbname
  sets up structures for a slave database. Does not include triggers,
  but only bookkeeping tables. 

MasterAddTable dbname table column
  sets up triggers for the specified table and column. Note that this
  column must be updated for replication to occur. 

SlaveAddTable dbname table column
  sets up bookkeeping for the specified table and column.

Replicate masterdb slavedb
  actually replicate changes from a master to single slave. Note that
  this must be repeated to replicate to multiple slaves, but the
  bookkeeping for each slave is handled separately so each can be
  updated at different times and with different sets of changes.

GetSyncID [--noverbose] slavedb
  returns the last syncid the specified slave has seen. May be used
  in conjunction with SyncSyncID and CleanLog using the --noverbose
  option.

MasterSync masterdb syncid
  registers a syncid with the specified master database. Used to
  propagate replication success back to the master database.

CleanLog masterdb syncid
  removes obsolete entries in the master database replication log
  table up to the specified replication sequence number.

Other utilities:

PrepareSnapshot
  build a file of replication information from the specified masterdb.

ApplySnapshot
  use a file of replication information to apply to the specified
  slavedb. 


How to run a demo:

Run the InitRservTest script. It will create two local databases
'master' & 'slave' with table 'test' in them. It accepts the following
arguments:
  --help
    Print a usage message and quit.
  --user name
    Access the database with another username.
  --host name
    Access a remote database. Note that the shared library *must* be
    visible in the same path as installed on the build machine.
  masterdb
  slavedb
    Names of test databases. Defaults to 'master' and 'slave',
	respectively.

Once the test databases are set up, simply updating the master table
is sufficient to log a replication event. You can update the table
test then run "Replicate master slave", or you can use the demo
program RservTest.

Run the tcl/tk GUI demo program, RservTest. It has a single window,
which has four buttons and three data entry boxes.

  --------------------------------------------------
 |   PostgreSQL Asynchronous Replication            |
 |        Master          Slave                     |
 |      < master    >   < slave      >              |
 |                                                  |
 |  [ Update    ]   <                         >     |
 |  [ Replicate ]                                   |
 |  [ Show      ]   ____________                    |
 |                                                  |
 |            [ Quit ]                              |
 |                                                  |
  --------------------------------------------------

The demo has the following behaviors:

If you enter a string into the data entry field to the right of
[Update], then that string will be used to either update the master
database or to query the slave database.

If you click [Update], then the string in the data entry box will be
entered into the master database.

If you click [Replicate], then all changes since the last replication
will be propagated to the slave database.

If you click [Show], then the slave database will be queried to find
the string in the data entry box to the right of the [Update]
button. If the string does not (yet) exist in the slave database, then
"n/a" will appear to the right of the [Show] button. If the string
does exist in the slave database, then it will be printed to the right
of the [Show] button.


Todo:
1. Support for multiple slave servers.
2. Explicit support for master/slave failover.
3. More docs.