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
4
votes
0 answers

all dfs replication groups failing at the same time

We have 2 pairs of fileshare servers. All servers are virtual Windows 2008 R2. Each pair is replicating over a WAN. Occasionally all DFS replication groups fail at the same time. I could not find any relevant logs on the DFS servers. The following…
Ben Force
  • 271
  • 1
  • 6
4
votes
1 answer

7-Mode snapmirror status post link change

In a Netapp with a snapmirror relationship to another Netapp in 7-mode, what are my options of checking replication performance through Data Ontap? We upgraded the link and want to know how snapmirror performs after the change.
user2967267
  • 113
  • 1
  • 6
4
votes
1 answer

Server with multiple replicate=do-db entries

I have a server that someone has setup which are acting as a master-master on both servers. Since they have been configured as both master on the same database, changes in one end has caused all sorts of issues on the other. On one of the master is…
supmethods
  • 287
  • 4
  • 16
4
votes
4 answers

Best way to replicate / mirror 100s of databases in SQL 2005

I currently host around 400-500 SQL 2005 databases of varying sizes (1-10 gig) each. I am aware of most of the different methods available and the general pros/cons of mirroring, log shipping, replication and clustering, but i am not aware of how…
mrwayne
4
votes
1 answer

DFS-R broken after renamed upgraded member server

I had an existing 2-way DFS-R replication topology set up, consisting of two servers, one was Windows 2003 R2 and the other Windows 2008 R2. This was working fine. Last week I upgraded the Win 2003 server to Windows 2008 R2. It was a VM, so the…
PowerApp101
  • 2,624
  • 1
  • 20
  • 28
4
votes
1 answer

Redis sentinel + HAProxy failover

I am looking to implement a HA redis implementation using Master-Slave redis servers. The web servers will connect to these through an HAProxy instance installed on each box. The situation is easy with only two servers, if one goes down the other…
JonoCoetzee
  • 315
  • 1
  • 3
  • 12
4
votes
2 answers

Large lag on mysql replication (Relay_Log_Pos and Exec_Master_Log_Pos does not increase)

Today my two slave's (one mysql 5.1 and second MariaDB 5.5, master is mysql 5.1) started lagging. Similar situation are quite often with lags rises to even 10000 seconds, because slaves have worse hardware configuration then master but now I'm…
B14D3
  • 5,188
  • 15
  • 64
  • 83
4
votes
1 answer

How do I fix issue causing "incomplete startup packet" log message trying to implement replication in Postgresql?

I've got two cloud servers running Ubuntu 13.04 and PostgreSQL 9.2. I've primarily used this blog post to aid me in setting things up. However, to do the initial database dump to the slave I'm using pg_start_backup/pg_stop_backup strategy used in…
colour me brad
  • 71
  • 1
  • 2
  • 3
4
votes
2 answers

How to change the master in a MongoDB cluster without restarting the process?

Reading the documentation of MongoDB about how to configure a master-slave configuration of a cluster (our cluster will have more than 12 nodes, so unfortunately we can't have a replica-set configuration), how can I promote a slave to master without…
Kico Lobo
  • 145
  • 2
  • 6
4
votes
1 answer

Configuring openldap multimaster replication using cn=config

We currently have a single OpenLDAP server using the cn=config backend. We'd like to add a second OpenLDAP server and configure them for multimaster replication. What do we need to do to enable replication on the existing server and initialize the…
Brad Mace
  • 1,024
  • 3
  • 17
  • 32
4
votes
2 answers

What is the correct way to configure AD replication in a hub-spoke design

Our AD is a basic hub/spoke design. We have a headquarters in London, and remote offices. The remote offices are connected via VPN to HQ. We have 3 domain controllers at HQ, and one in each remote office. We have had Windows 2000, Windows 2003…
dunxd
  • 9,632
  • 22
  • 81
  • 118
4
votes
1 answer

Repadmin gives operational error 58

While testing some remote DC's, "repadmin /replsummary" ended with an error of Experienced the following operational errors trying to retrieve replication information: 58 - mydc1.mydomain.com 58 - mydc2.mydomain.com Information…
Bart Silverstrim
  • 31,172
  • 9
  • 67
  • 87
4
votes
1 answer

MySQL Master - Master Broken

I've Inherited a Mysql master master system, I've noticed the second master (lets call it slave from now on as it's running on a 'slave' machine) stopped getting its db's updated. I saw that Master: Slave_IO_Running: Yes Slave_SQL_Running:…
Recct
  • 370
  • 1
  • 3
  • 22
4
votes
1 answer

MongoDB Replica-Set with Replication Lag on one node only

we experience a strange behaviour in our MongoDB Replica-Set, setup of 3 Nodes (all Xeon Quad-Core-Class CPUs, 16GB of RAM for one, 24GB for the other two nodes) The one node with less RAM is normal secondary with priority 0, other two priority 1.…
martinseener
  • 149
  • 11
4
votes
3 answers

How do I configure active directory when Sql Server 2012 is using a Virtual Account?

I'm getting the following event log entry from Sql Server 2012: SQL Server Scheduled Job 'Replication agents checkup' - Status: Failed - Invoked on: 2012-08-04 10:00:00 - Message: The job failed. Unable to determine if the owner (AD\Administrator)…
Mike
  • 1,271
  • 5
  • 18
  • 31