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
1 answer

pg_basebackup: could not get WAL end position from server

I want to create a Base Backup with the pg_basebackup tool of postgres 9.1. After some seconds I receive: ``pg_basebackup: could not get WAL end position from server` What can be the reason for this error message?
markus
  • 1,080
  • 5
  • 18
  • 38
3
votes
1 answer

Is it possible to backup an Amazon RDS database to another service?

I moved my site's database to RDS a few months ago. At the time, I finally decided I was ready to have a dedicated database server, and during the process of setting one up on EC2, I discovered RDS. I've been really happy with it. The problem is…
Peter
  • 133
  • 4
3
votes
1 answer

What is the safest way to change MongoDB server structure?

I currently have a MongoDB replica set configured as such: { "_id" : "ahspy_mongo_set", "version" : 13, "members" : [ { "_id" : 0, "host" : "remotedatacenter.in.montreal.dns.com", …
Pierre
  • 241
  • 1
  • 2
  • 11
3
votes
3 answers

AD Replication Monitor

Is there something like Replication Monitor (in Windows 2000) available in Windows 2008 R2? What tool do you use to check replication health?
Iškuda
  • 225
  • 2
  • 7
3
votes
2 answers

Too many data replication technologies in environment

It is possible to configure remote data replication at many layers of the storage stack. Some examples to explain what I mean by layers: Physical Volume Layer (TruCopy, SRDF/MirrorView, SnapMirror) Virtual Server Layer (vReplicator, Veeam) Logical…
Tom Shaw
  • 3,752
  • 16
  • 23
3
votes
3 answers

Best way to duplicate a server?

We currently have a dedicated server with one company that utilizes cPanel/WHM and are moving to a new dedicated server also with Cpanel/WHM. I can get it so cpanel is installed then migrates the accounts all over and everything but php has been…
mahle
  • 255
  • 3
  • 10
3
votes
1 answer

Server has IP address with conflicting site associations

I have run dfsdiag /testdcs and I am getting the error: Server has IP address with conflicting site associations Now I think this is probably due to the fact that the server in question is linked to the others by a static VPN connection which gives…
Simon Foster
  • 2,622
  • 6
  • 38
  • 55
3
votes
1 answer

Backing up live iSCSI LUNs

Is there anyway to replicate a live (running) iSCSI LUN from one NAS to another using QNAP?
Aaron
  • 83
  • 1
  • 9
3
votes
3 answers

BestReplicated File System - Small, Static Files

As part of our development workflow, we would like to have our build server publish our compiled binaries and other build artifacts to some LAN-based, replicated file system. Ideally, we'd just have our build server drop the build artifacts into a…
Jonathan Oliver
  • 329
  • 1
  • 3
  • 13
3
votes
5 answers

SQL Server 2008 R2 transactional replication over VPN

I'm having difficulty setting up replication over a VPN. I have a SQL Server 2008 R2, Enterprise Edition database on a Windows 2008 R2 Server. SQL Server is running on a non-standard port. I have set it up so that it is acting as its own distributor…
3
votes
4 answers

mysql stop slave forever

I used replication to migrate all data to a new server, and then I commented out master_host,master_port etc(basically all lines related to master) in my.cnf, I issued stop slave. However I after restarted mysqld, the replication process is running…
user12145
  • 1,115
  • 6
  • 28
  • 47
3
votes
2 answers

Restoring a slave MySQL database from raw backups of master gives InnoDB tablespace errors

I have a master/slave replication setup where I use InnoDB and MyISAM tables in over 7000 databases that I want to copy from my master to the slave to restore replication. Both servers were running Ubuntu 10.04.2 LTS (which uses the mysql-server…
Edward van Kuik
  • 226
  • 2
  • 6
3
votes
5 answers

Using MySQL replication to enable a read-only copy of a database in a DMZ

I need to set up a MySQL database instance in a DMZ that is a read-only copy of the live master inside a secure network. MySQL replication seems ideal for this, except that it works by the slave "pulling" changes from the master. This implies that…
mrowe
  • 133
  • 1
  • 4
3
votes
1 answer

What is the best way to copy production Active Directory back to pre-production / staging?

I'm setting up a preproduction environment as a copy of production. The first time this was done, a very long time ago, when staging/preprod environment was created, we spun up an AD virtual machine, temporarily added it to production, waited for it…
zsouthboy
  • 33
  • 4
3
votes
1 answer

One way replication from MSSQL2005 to MYSQL 5.x

I have a mysql database acting as our websever backend. We have our production mssql server that we would like data pushed from, to our mysql server. I have successfully made the mysql server an ODBC system datasource. I can do an insert update…