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

SYSVOL replication over DFS-R

When we migrate our production DCs to Server 2008 I would also like to move away from FSR to DFS-R for SYSVOL replication. My problem is that I setup a quick lab to test it out but it's not going as planned. I'm sure I'm just overlooking something…
GNUix
  • 490
  • 1
  • 5
  • 13
4
votes
2 answers

Outlook Scheduling Assistant not seeing free/busy consistently

I have Exchange clusters located in 2 different states conencted by a DS3. When I am scheduling a meeting requiring attendees from both locations, I cannot always see free/busy times for users at the remote location. It's very inconsistent and will…
Jes
  • 880
  • 2
  • 6
  • 10
4
votes
2 answers

Options for continuous one-way replication of tens of millions of files on Windows Server?

We have a very large Windows file store (several terabytes and tens of millions of files) that I want to keep in continuous replication over to another server, in as near to real-time as possible. I'm looking for options on tools that will make this…
scobi
  • 879
  • 3
  • 13
  • 17
4
votes
1 answer

Looking for advice on Hyper-v storage replication

I am designing a 2-host Hyper-V R2 cluster with 6-10 guests stored on a SMB iSCSI SAN device (probably Promise VessRAID). I will be getting at least two of the SAN devices and need to eliminate the storage a single point of failure. Ideally, that…
Notre1
  • 161
  • 4
4
votes
2 answers

MySQL replication: Getting the master in sync with the slave again

I have two computers on the same network, in a master-slave replication setup. Simply to test failover, I inserted some data straight into the slave database. So now the slave database contains more information than the master database. Now I want…
Deniz Dogan
  • 143
  • 1
  • 3
4
votes
2 answers

MySQL Clustering and replication

I want to setup a MySQL cluster setup of two servers (M1-M2). I also want to setup MySQL replication between two servers (M1-M3). Is it possible to setup both clustering and replication as above. Is it a good idea to have a setup like this ? I want…
Santhosh S
  • 263
  • 2
  • 11
4
votes
1 answer

SQL mirroring or log-shipping - which has the least impact on a replicated database?

We're planning a server which is a clustered SQL2005 Enterprise 64bit with a database of which a subset of tables are replicated one way via transactional replication to single subscriber located at different data center for reporting purposes. The…
SuperCoolMoss
  • 1,262
  • 11
  • 20
4
votes
4 answers

How do I mirror a MySQL database?

I'm running two load balanced servers for one website, and I'd like the databases to be synchronized. Queries may be run on either of the two servers because they are both production sites, so the replication can't just work one way. It doesn't have…
Matt
  • 645
  • 1
  • 7
  • 14
4
votes
3 answers

Using GlusterFS for simple replication

newbie question. I need to build this: /shared folder ~500GB of files, ~1MB each one. Two boxes (server1 and server2) connected by a 1Gbs LAN Every box needs to get r/w access to the files, so their are both clients I want that the files…
k7k0
  • 255
  • 2
  • 7
4
votes
1 answer

Git multi-master, is it possible?

Is it possible to set a dual master GIT repositories? I would like to set up two different servers which I could push and commit to and changes on any of them would be propagated to the other. I've googled for it, but the most similar solution I've…
scetoaux
  • 1,289
  • 2
  • 12
  • 26
4
votes
1 answer

Windows Server 2008 (Web Server) Replication

We have a load balanced environment with x64 Windows Server 2008. What are some best practices to setting up replication across the web servers? Do I only want to replicate the web folders? How about replicating IIS changes - or do I need to make…
Josh
  • 483
  • 2
  • 9
  • 19
4
votes
2 answers

Will this force a reinitialize in Merge Replication Topology?

I need to add a couple of columns to a table that is a part of a replication set. It is not a constraint coulumn or a part of any article filters and it allows NULL. I have a pretty good idea that I can run this --> ALTER TABLE tblPlanDomain ADD…
4
votes
4 answers

SQL 2000 Replication error - The subscription(s) have been marked inactive and must be reinitialized

We have a largish database (350GB) which is replicated to a subscriber which is georaphically in a different location. Unfortunateley we have a slow connection between the two sites. Today we're getting the following error at the distributor: The…
SuperCoolMoss
  • 1,262
  • 11
  • 20
4
votes
1 answer

best practice to removing DC from Site that no longer connects via vpn in another city

hi i am looking for a recap of what i have done already to see if i missed anything. i had two cities connected by wan using a ipsec persistent tunnel between gateways. i had one DC (DOMAIN CONTROLLER) in each city that was a global catalog server…
dasko
  • 1,244
  • 1
  • 22
  • 30
4
votes
3 answers

What are the performance implications for using SQL Server replication?

What are adverse affects to using replication What are some examples of when replication is beneficial
squillman
  • 37,883
  • 12
  • 92
  • 146