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.

1020 questions
8
votes
1 answer

Why would a domain controller encouter a USN rollback after an unclean shutdown?

I have this Windows Server 2008 R2 domain controller running on a physical Dell server, model PowerEdge R510. There are some electrical problems around here, thus a black-out is, unfortunately, quite a common occurrence; there are UPSes, but they…
8
votes
2 answers

Is it safe to replicate from Solaris ZFS to FreeBSD ZFS?

Is it safe to replicate from a Solaris 10 ZFS v22 to a FreeBSD 8.3 ZFS v28? Are there someone that have done this with specific versions of ZFS, where it worked perfectly?
Louise Hoffman
  • 476
  • 2
  • 6
  • 12
8
votes
5 answers

Block-level LUN replication options for Windows

When it comes to replicating a LUN or partition to a physically separate server, Linux has DRBD (now in the kernel!). As I understand it, it has both synchronous and asynchronous replication modes. When you have a fast network between your two…
sysadmin1138
  • 131,083
  • 18
  • 173
  • 296
8
votes
4 answers

Replicating storage efficiently

I want to replicate in the region of 10Tb of data (lots of smallish files, low level of churn) across a WAN with minimal impact on the available infrastructure. While I could simply use rsync, this means looking for the changes and comparing the…
symcbean
  • 19,931
  • 1
  • 29
  • 49
7
votes
1 answer

one of the single dc per domain DCs has suffered USN rollback

I've inherited an Active Directory forest that is laid out very badly. It has a single forest with a domain tree for each site, each with a single domain controller. No domain is a child of any other domain. Now one of the DCs, lets call it M1 for…
BeowulfNode42
  • 2,595
  • 2
  • 18
  • 32
7
votes
3 answers

What does zfs receive -F do?

When I read man zfs for zfs receive I see -F Force a rollback of the file system to the most recent snap- shot before performing the receive operation. If receiving an incremental replication stream (for example,…
Sandra
  • 9,973
  • 37
  • 104
  • 160
7
votes
1 answer

ZFS replication between 2 ZFS file systems

I initially replicated tank/storage1 --> usb1/storage1-slave (depicted below), and then (deliberately) destroyed the snapshot I replicated from. By doing this, did I lose the ability to incrementally (zfs send -i) replicate between these 2 file…
XO01
  • 113
  • 8
7
votes
2 answers

DRBD Not syncing between my nodes

Some version info: Operating system is Ubuntu 11.10, on EC2, kernel is 3.0.0-16-virtual and the application info is: Version: 8.3.11 (api:88) GIT-hash: 0de839cee13a4160eed6037c4bddd066645e23c5 build by buildd@allspice, 2011-07-05 19:51:07 Getting…
Kladskull
  • 1,265
  • 5
  • 15
  • 32
7
votes
6 answers

Syncing multiple wordpress web servers in a farm

My company will shortly be setting up a blog, and I'm planning on setting up two web servers to host the wordpress website for redundancy. Normally when we do releases to a site in a farm we push to one side, test and then release to the other…
mrdenny
  • 27,074
  • 4
  • 40
  • 68
7
votes
3 answers

Replicate a big, dense Windows volume over a WAN -- too big for DFS-R

I've got a server with a LOT of small files -- many millions files, and over 1.5 TB of data. I need a decent backup strategy. Any filesystem-based backup takes too long -- just enumerating which files need to be copied takes a day. Acronis can do…
Jesse
  • 1,910
  • 3
  • 23
  • 28
7
votes
6 answers

Is it possible to use an EC2 RDS MySQL instance as a slave to an external master?

I have a master MySQL instance running on our local network, but I was wondering if I can get an EC2 RDS instance to replicate the master or is this locked down by amazon?
user57758
7
votes
4 answers

Open Source Alternative to Microsoft's File Replication Services

We're operating two rather busy locations with 40+Gigs of client data shared on Windows 2003 servers and need to have it replicated (as close to instantaneously as possible) to each. We're experiencing intermittent replication failures, and have…
Allain Lalonde
  • 250
  • 1
  • 4
  • 11
6
votes
2 answers

SQL Server Failover strategies

In my infrastructure I have a SQL Server 2014 Standard standalone server. As databases and applications which are using SQL Server are growing up, I want to upgrade to SQL Server 2016 Standard and install two nodes to get an highly available SQL…
Mat
  • 1,783
  • 4
  • 22
  • 39
6
votes
1 answer

Active Directory replication target principal name incorrect

I have a small 2 DC domain using Win 2008 R2 machines. Recently, one had to be restored using backup exec system recovery. Now the two are failing replication. I have ran DCDIAG on both (see below) and see that several things fail with target…
6
votes
1 answer

How can I set up an Amazon RDS for PostgreSQL database to act as a replica to a non-RDS PostgreSQL database?

I'm trying to set up an PostgreSQL database on Amazon RDS as a replica to another PostgreSQL database that lives on a regular server. Most of the instructions I've found online require shell access so that you can copy over a bunch of data files…
dwlz
  • 891
  • 3
  • 10
  • 19
1 2
3
67 68