That knowledge-base article is referring to the fact that if the replication link is actually physically severed, then you will still be able to transfer data to the source system, but all the data written to the source will be resynced once the connection is re-established. If the link is severed, the cluster is in a sort of degraded mode. This won't happen really with merely a slow replication link.
By default, Open-E uses synchronous replication, so your write speed is limited by the speed of your destination server and the link to your destination server. This is a good idea for databases where every single transaction counts.
There is an option to enable an asynchronous (i.e. buffering) protocol that will allow replication over slower (i.e. WAN) links while keeping both the source and destination in a "consistent" (in this case, meaning non-corrupt) state but not necessarily in an up-to-date state. In this case, if your primary system blows up, it's possible to lose the last minute or so of data, but besides that you're good.
So, for the case of a slow WAN link or a slow destination system, Open-E has the option to use buffering.
In the case where you have a slow destination disk subsystem (say, 15k sas in source and 7.2k sata in destination), if I were you, I would just put a RAID card with lots (like 4GB) of buffer space in the destination side. That would let you handle a spike in the write load while still being able to use the synchronous replication mode.








Reply With Quote