Operating System - HP-UX
1822986 Members
3784 Online
109645 Solutions
New Discussion юеВ

tools/strategy for server replication

 
James Nguyen
New Member

tools/strategy for server replication

I have a replica of a production server which is used as a DR (Disaster Recovery) server. I would like to configure the PROD server to "sync" its data with the DR server overnight across the WAN (1Mb). This would allow me to have the DR server come online immediately in the event of a DR without having to restore the system from tape. What tools/strategy would you advise? Thanks in advance.

J
3 REPLIES 3
Bill Hassell
Honored Contributor

Re: tools/strategy for server replication

This is a lot more complicated than it sounds. You must first determin the worst case amount of data that will be transmitted. A T1 line or DSL is *very* slow for most databases. 1Mb/sec is only 100Kb/sec but because it is a WAN, the line turnaround time may be very slow, perhaps several hundred milliseconds. So you may see only 50Kb/sec or less. If you have a 50 Gb database, it will take about 277 hours to transmit. Oops..

Now if you can figure out a way to transmit just the data that changed, then perhaps you can get this time down to a few hours. The problem is that for databases, there isn't a simple way to find just the changed records, indexes, etc. There are special accessories for Oracle, Sybase, etc which are designed to sync a remote database for DR purposes. But you still need to know the amount of changed data to see if there is enough time to sync all the data. You may need a much faster link (T3 at 45Mb) to make this DR plan work, even with a realtime sync.


Bill Hassell, sysadmin
Rainer von Bongartz
Honored Contributor

Re: tools/strategy for server replication

like Bill said, this involves looking at the amount of data and the kind of data.

For databases like Oracle, Informix and even DB2 there exist build in funtionalities to do the replication.

If it comes to simple file system data you could take a look at rsync for this task.
Rsync is based on a very sophisticated algorithm for data replication.

Regards
Rainer
He's a real UNIX Man, sitting in his UNIX LAN making all his UNIX plans for nobody ...
Eric Antunes
Honored Contributor

Re: tools/strategy for server replication

Hi James,

If you are talking about Oracle you have RAC on 9i or standby database on previous versions.

You must be more explicit explaining what is your situation...

Eric
Each and every day is a good day to learn.