Questions tagged [replication]

Replication is the process of sharing information so as to ensure consistency between redundant resources, such as software or hardware components, to improve reliability, fault-tolerance, or accessibility.

Replication is the process of sharing information so as to ensure consistency between redundant resources, such as software or hardware components, to improve reliability, fault-tolerance, or accessibility. It could be data replication if the same data is stored on multiple storage devices, or computation replication if the same computing task is executed many times. A computational task is typically replicated in space, i.e. executed on separate devices, or it could be replicated in time, if it is executed repeatedly on a single device.

The access to a replicated entity is typically uniform with access to a single, non-replicated entity. The replication itself should be transparent to an external user. Also, in a failure scenario, a failover of replicas is hidden as much as possible.

It is common to talk about active and passive replication in systems that replicate data or services. Active replication is performed by processing the same request at every replica. In passive replication, each single request is processed on a single replica and then its state is transferred to the other replicas. If at any time one master replica is designated to process all the requests, then we are talking about the primary-backup scheme (master-slave scheme) predominant in high-availability clusters. On the other side, if any replica processes a request and then distributes a new state, then this is a multi-primary scheme (called multi-master in the database field). In the multi-primary scheme, some form of distributed concurrency control must be used, such as distributed lock manager.

1036 questions
5
votes
1 answer

Postgres replication falling behind - master -> slave, slave, slave

I currently have 1 master server (a) and 3 replication servers (b, c, d) that come directly from the master, the archive_command I use is the following script: https://gist.github.com/Geesu/8640616 All servers are Ubuntu 12.04.4 running PostgreSQL…
Geesu
  • 235
  • 4
  • 10
5
votes
2 answers

Can you sync two different domains on MS DNS server?

Lets say you are running a domain X, but want your internal DNS server to handle requests for both domain X and domain Y such that if machine1.X resolves to a.b.c.d, that machine1.Y would resolve to the same IP address? Basically we would like to…
Benjamin Peikes
  • 1,094
  • 3
  • 16
  • 26
5
votes
6 answers

Making Active Directory changes atomic

I've got a Windows 2003 Active Directory infrastructure, and there are times (such as when terminating an employee) that I want instantaneous propagation across both of my AD servers. Currently, I make the change in both places, which I suspect is…
Matt Simmons
  • 20,396
  • 10
  • 68
  • 116
5
votes
2 answers

Scalable CouchDB setup

I want to migrate an existing application that has approx. 10 million records stored in a relational database to CouchDB. The thing that I love about CouchDB is easy replication and fast cached views. The thing I don't like is the write and view…
jensendarren
  • 383
  • 2
  • 12
5
votes
2 answers

Hyper-V 2012 replication to multiple hosts

With Hyper-V 2012, it is possible to configure the primary server to replicate to a slave server, to allow virtual guests to be live migrated to the slave server, when maintenance is required on the primary server. My question is as follows: Is it…
Bryan
  • 7,628
  • 15
  • 69
  • 94
5
votes
2 answers

KVM Hosting: How to efficiently replicate guests

I have three KVM servers each with 1 guest VM, running directly on it's local storage, (so they are essentially getting a dedicated box worth of computing power each). In the event of a host failure I would like the guests replicated to at least one…
jwbensley
  • 4,202
  • 11
  • 58
  • 90
5
votes
3 answers

New Domain controller is having trouble replicating from an existing DC, 13508 Event ID for FRS

This question is related to a previous one I asked regarding backing up Domain Controllers and RODC's. Basically I am making some changes in regards to the DC's in my network. I am looking to add a writable 2008R2 DC as well as a 2008R2 RODC to my…
5
votes
3 answers

Why is GPO Tool reporting a GPO version mismatch when the GPO version #'s do match?

Any ideas why the group policy diagnostic utility GPOTool would report a GPO version mismatch between two domain controllers if the version numbers are a match? Policy {GUID} Error: Version mismatch on dc1.domain.org, DS=65580,…
5
votes
3 answers

Ubuntu + ZFS: How to migrate entire system to new disks?

Here's my scenario: I have Ubuntu with native ZFS installed on a server with 2 x 500 GB SATA disks. I installed it following this guide: https://github.com/dajhorn/pkg-zfs/wiki/HOWTO-install-Ubuntu-to-a-Native-ZFS-Root-Filesystem So I have on disk 1…
El Barto
  • 963
  • 5
  • 16
  • 24
5
votes
4 answers

DRBD or similiar RAID over net on slow/limited networks

I am looking for ways to create some kind of file replication without losing too much performance on file operations. A real RAID is not an option due to non-technical constraints. As far as I understand, DRBD tries to act like a real RAID1,…
Martin
  • 326
  • 2
  • 14
5
votes
2 answers

Is there a safe way to bypass a non-replicating DC?

We have a domain controller that was virtualized a while back; this caused issues with replication that we're now seeing fallout from. I've moved the PDC Emulator and other fsmo roles to a new DC and we're working on decommissioning the virtualized…
bshacklett
  • 1,378
  • 4
  • 19
  • 39
5
votes
4 answers

Solution for two-way file-system transparent solution

I need to implement some sort of HA setup where 2 servers need to be able to always be in sync, no matter on which one you write on. The DB part can be covered by a master-master replication setup. However, when it comes to files and content I…
5
votes
2 answers

datetime format changed between mysql 5.0 and 5.1?

I've upgraded a mysql slave from mysql 5.0 to mysql 5.1. during the catch up, the replication failed on a query with incorrect datetime value: 110919 13:56:18 [ERROR] Slave SQL: Error 'Incorrect datetime value: '2010-03-14 02:35:34.0' for column…
smintz
  • 282
  • 3
  • 9
5
votes
3 answers

Failed to connect from slave to master with error "error connecting to master (1045)"

I try to setup replication from slave to the master. CHANGE MASTER TO MASTER_HOST = 'master', MASTER_PORT = 3306, MASTER_USER = 'repl', MASTER_PASSWORD = 'xxx'; And I did grant privileges to the user on master. I can connect with mysql…
Fang-Pen Lin
  • 282
  • 1
  • 3
  • 12
5
votes
18 answers

How to Eliminate Tape Backup and Off-site Storage Service?

PLEASE READ UPDATE AT THE BOTTOM. THANKS! ;) Environment Info (all Windows): 2 sites 30 servers site #1 (3TB of backup data) 5 servers site #2 (1TB of backup data) MPLS backbone tunnel connecting site #1 and site #2 Current Backup Process: Online…
Daniel Lucas
  • 1,192
  • 1
  • 14
  • 25