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
3
votes
3 answers

Subversion cluster / replication / HA

What's a good way of making SVN highly available? We take backups of our Subversion server, but this is not enough, as svn is very important. We would like to implement some HA mechanmism for Subversion There is a commercial solution…
PieterB
  • 91
  • 1
  • 6
3
votes
2 answers

multi-master file replication

I have a load balancer and several servers behind it. I'm looking for a multi master file replication tool that would allow me to write on any of the machines and replicate the content on all the others, on an event-basis, in a very small timeframe…
evilpenguin
  • 781
  • 3
  • 9
  • 16
3
votes
4 answers

How can I create a slave replica of a MySQL server without stopping the master?

To ensure the data on the slave and master are in the same place for replication, the new master should be stopped and data transferred to the new slave before starting the master again, at least this is one option. How can I start replication of a…
davidmytton
  • 666
  • 3
  • 7
  • 17
3
votes
3 answers

MSSQL Two Database Servers 1 Database

We have two servers. They are both HP DL 380 G6 servers with the same hardware and specs running Windows Server 2008. Currently the second server is a warm standby for the first with an automatic fail over cluster for SQL 2008 Enterprise. I would…
Campo
  • 1,609
  • 17
  • 33
3
votes
2 answers

Active Directory replication failing with Access is Denied

I recently discovered that Active Directory replication started failing about a month ago. If I attempt to Replicate Now from the failing domain controller, I receive The following error occurred during the attempt to synchronize the domain…
3
votes
1 answer

Alter Stored Procedure in SQL Replication

How do I, properly, ALTER a StoredProcedure in a SQL 2005 Merge Replication? I just need to add a Column. I already successfully added it to the Table and I now need to add it to a SP. I did so but now it will not synchronize with the following…
3
votes
2 answers

Will the DNS Forward Lookup Zone recreate itself if I delete it?

Here is my situation: I have inherited a Windows 2003 domain with only 1 domain controller, we'll call it DC1. DC1 is also the DNS, DHCP and Exchange server for this organization. DC1 was originally a Small Business Server but was upgraded to…
3
votes
3 answers

What is the least expensive version of Microsoft SQL Server 2008 that supports replication?

We need to purchase two licenses for Microsoft SQL Server 2008 to upgrade Microsoft SQL Express 2008 so that we can mirror the two databases in two geographically dispersed locations. What is the least expensive licensing option, and where is a good…
Nick Bolton
  • 5,126
  • 12
  • 54
  • 62
3
votes
1 answer

SQL Server 2008 Replication & Sync Framework - Practical Limits

We are looking at hosting our client's data on our own system and using the MS Sync Framework to replicate data with a SQL Server instance on each client's site. Each client might have on average about 500MB of data and there could be up to 1,000…
Steve Agnew
3
votes
1 answer

Replication sync failing; Publisher out of Identity ranges

I have Merge Replication set up with a SQL 2005 Publisher/Distributor and roughly 100 SQL 2005 Express Subscribers. Everything was working fine for months and now all of a sudden everyone is getting the below errors. I have been Googling around but…
3
votes
1 answer

Howto: Block or File replication across 3+ nodes without a SAN

The setup I admin the backend for a website that currently exists on a single node using Nginx (webserver), Neo4J (database) and Wildfly (app server). The website is getting enough traffic that we are both storage and memory resource limited on the…
3
votes
1 answer

How do you handle IP addressing at a DR Site

I've found various tools that handle replicating virtual machines from one physical location to another for disaster recovery purposes. The part that I am struggling to understand is how these tools handle things like windows server names and IP…
Brad
  • 619
  • 1
  • 10
  • 28
3
votes
1 answer

Can an orphaned Domain Controller be rescued?

When an Active Directory domain controller becomes orphaned from a domain, is it possible to configure it to continue operating as a healthy DC without going through the process of forcefully demoting it, then re-joining and promoting it? Consider…
Nic
  • 13,425
  • 17
  • 61
  • 104
3
votes
1 answer

What replication options exist between SQL Server 2000 and 2005?

We have a business partner that is still on SQL Server 2000, and we would like to replicate a couple databases to one of our SQL Server 2005 instances. The business partner databases that we need to replicate from are only updated daily, so we…
Even Mien
  • 657
  • 2
  • 12
  • 19
3
votes
2 answers

Dfsr - replicatedFolderinfo state 3 (in recovery) progression

I have a DFS Namespace currently in auto-recovery due to an unexpected server crash. There's about 600GB of data and it's consisting of small files for the most part. It's been in auto-recovery for over 72 hours now. I can run Get-WmiObject…
jfrobishow
  • 71
  • 10