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

Best Software to Control and Manage SAN Storage?

We are going to buy A New San Storage for design our disastry site, Maybe HP SAN Storage, we are looking the best soltion for managing our SANs and creating replication between these two SANs? each SAN is resides in one of our building that is too…
user19049
  • 487
  • 2
  • 14
  • 25
0
votes
1 answer

Self-replicating Linux

Looking for a project that aims at creating a self-replicating Linux distro, i.e. a distro that when connected to other devices, attempts to replicate itself on those devices. Is there such a thing?
infojunkie
  • 147
  • 6
0
votes
1 answer

Selective replication in sql server

I wanted to replicate my database across 2 servers both using sql server 2005. The problem is that the main server have both 'User' and 'Admin' data in a table. At the other end , I want to replicate the entire database but the 'Admin' data should…
Hakim
  • 37
  • 1
  • 6
0
votes
1 answer

Pushing image changes to multiple servers

I need the ability to push images out to multiple servers whenever they're updated. I've looked at Network Filesystems, but they're all but worthless due to their speed. Images can be uploaded to any one of 3 servers, and would then need to be…
Glen Solsberry
  • 1,536
  • 5
  • 28
  • 38
0
votes
2 answers

Windows server AD replication

We have run dcdiag on our Windows server 2003 AD domain controller and replication seems to be down (output below). Testing server: Tradeston\PNC4SERVER Starting test: Replications REPLICATION-RECEIVED LATENCY WARNING …
0
votes
1 answer

Replication doesn't start after reinitializing in MS SQL 2008 R2

After subscription had been marked for reinitialize, a new snapshot was generated. Log reader and queue reader agents are running. But when we try to turn on the synchronizing, we're getting the following error: The concurrent snapshot for…
arena-ru
  • 101
  • 1
  • 2
0
votes
1 answer

file synchronization between two open-e storage servers

i am currently trying to find a solution to synchronize two storage servers both running open-e dss 6. i need only one-way synchronization (storage A -> storage B) my volume is 30TB in size, therefore dss' replication will not work (at least afaik…
harald
  • 403
  • 2
  • 6
  • 19
0
votes
1 answer

Sharepoint 2010 replication between multiple offices

Does Sharepoint 2010 address geo replication? My searches kept coming up with a third party solution but I'd rather stick to a built in option if it's available. I have multiple offices over 4.5 and 1.5 mbps WAN connections who access sharepoint…
PHLiGHT
  • 1,041
  • 11
  • 25
0
votes
1 answer

prevent unique constraint violations in clustered architecture

im working with four app servers and two database instances (3DNS and BigIP determine what app server a user is directed to based on usage etc). Two app servers per database node. The database instances stay synchronized using replication. However,…
cdugga
  • 105
  • 1
  • 5
0
votes
1 answer

Creating indexes on tables filled from transactional replication - SQL 2005

I've got two SQL 2005 servers, one OLTP [let's call it SQLA] and one used for reporting [SQLB] to reduce load on SQLA when people run crazy queries. Our main database is replicated from SQLA to SQLB with transactional replication. The nature of the…
0
votes
1 answer

Is it possible to configure DFS between trusted domains?

Good day all, I have a situation where I am having a hard time finding any solid answers. My company recently acquired another company, and we need to have a lot of their data locally, while leaving it onsite for the old company to continue to work…
Russ
  • 330
  • 3
  • 8
  • 17
0
votes
1 answer

Is it possible use replicated storage in a network RAID 1 fashion?

I was wondering if there was any way to replicate the functionality of the HP StorageWorks P4000 Virtual SAN Appliance using open source tools? Basically the HP VSA lets you replicate in the same way DRBD does but it lets you use both of the block…
Flo Woo
  • 311
  • 3
  • 10
0
votes
1 answer

Email File Replication

Do you have any recommendation for how to do file replication via Email? I would prefer an application that can run as a windows service and has a nice gui. The remote location does not have a continuos internet connection which makes email the…
sepang
  • 101
  • 1
0
votes
1 answer

Best way for Linux site and Database redundancy

I am looking to set up a redundant network that uses a load balancing solution to redirect traffic between two servers. The load balancer I will use is HaProxy. Example: Traffic -> Haproxy -> Server1 or Server2 Now, both Server1 and Server2 will…
Chris
  • 1,289
  • 2
  • 18
  • 34
0
votes
3 answers

Two way, multi-site replication in MySQL

We have MySQL 5.1 databases at 5 separate locations that we need to keep as synced as possible. Each office needs to read/write from/to the local server at that office, but I need the DB at each office to reflect changes made at all offices. …
nedm
  • 5,630
  • 5
  • 32
  • 52