Questions tagged [replication]

The use of redundant resources to improve reliability, fault-tolerance, or performance.

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.

More info on Wikipedia

3869 questions
1
vote
1 answer

Not able to replicate CouchDB databases with admin and self signed SSL certificate

My local and remote CouchDB SSL server configuration cert_file /etc/couchdb/cert/couchdb.pem key_file /etc/couchdb/cert/privkey.pem port 6984 ssl_certificate_max_depth 1 verify_ssl_certificates false Whenever i create a document in…
sykyck
  • 11
  • 1
  • 4
1
vote
0 answers

Replicate existing LVM (xfs Filesystems) over network

i need to replicate 2 Productive Servers on a Backup Server (something like High Availability) Facts: 3 Servers: 2 Productive (1 Prod_serv: VG has 30TB and 5 LVM's; 2 Prod_Serv - VG has 10TB and 3 LVM; Backup_Serv - 70 TB but no VGs yet. Only OS…
1
vote
1 answer

How to add rule to migrate on node failure in k8s

I have k8s cluster running on 2 nodes and 1 master in AWS. When I changed replica of my all replication pods are span on same node. Is there a way to distribute across nodes.? sh-3.2# kubectl get pods -o wide NAME …
1
vote
0 answers

Hadoop HDFS does not notice when a block file is manually deleted

I would like to remove a specific raw block file (and included .meta file) from a specific machine (DataNode) in my cluster running HDFS and move it to a another specific machine (DataNode). It's possible to accomplish this if I stop the HDFS, move…
Jahwffrey
  • 11
  • 4
1
vote
1 answer

Is MS CDC possible as an ongoing replication for RDS managed SQL Server without sysadmin permissions?

My industry is planning to upgrade from SQL Server 2012 to SQL Server 2016 (standard editions both), after that we plan to do replication of our prod db. We went through few AWS docs which says: AWS DMS provides comprehensive ongoing replication of…
1
vote
1 answer

How to delete replication document for apache couchdb

I need to remove a replication document from the replicator db from couchdb, as mentioned by their documents. However I didn't find any sample curl used to delete the replication document. I have tried: curl -vX DELETE -H…
y17chen
  • 57
  • 8
1
vote
1 answer

Postgres logical replication initial setup super-slow

I've set up a simple postgres-10 logical replication publication CREATE PUBLICATION active_directory_pub FOR TABLE active_directory.security_principal; It's just a table with about 50,000 rows. However, when I try to subscribe to this publication…
nclu
  • 1,057
  • 1
  • 8
  • 19
1
vote
1 answer

SQL Server Msmerge_content

I just joined my new office as database administrator. Here we are using SQL Server merge replication. It surprises me that 3 of major replication tables Msmergre_contents Msmergre_genhistory Msmergre_tombstone Size of Msmergre_contents grew up…
1
vote
1 answer

MongoDB Replica set with external addresses

Here is my problem. Mongodb works perfectly on my debian 8 server, but I want to do a replica set with external addresses... Here is my problem : - I have two VPS on a different network - I followed a tutorial on internet but I have an error…
AChichi
  • 322
  • 5
  • 20
1
vote
2 answers

MongoDB 3.6 replica stuck on STARTUP

I am using mongodb with two servers physically located in respectively Italy and France. The France server runs Ubuntu server is the Primary of the replica set, and works fine, i.e it accepts connections from mongo shell whether locally or remotely…
1
vote
1 answer

Logical Replication in PostgreSQL 10

Is it possible to create a Logical Replication in PostgreSQL 10 that I can just replicate a column from a table, like can I say to my create publication that I want just a column from that table ? thanks in advance.
Diogo Silva
  • 195
  • 3
  • 17
1
vote
3 answers

How can we do data analysis for DB replication project

We are facing one issue in our project i.e. Data verification issue. The project is about Replication of data from Sybase to oracle DBs. The table structures for Table A across Sybase, Oracle is same. Same column and primary key combination across…
GauravP
  • 81
  • 3
  • 14
1
vote
2 answers

Changing replication of existing files in HDFS

I tried changing the replica factor from 3 to 1 and restarting the services. But the replication factor remains the same Can anyone suggest me how to change the replication factor of existing files? This is the fsck report: Minimally replicated…
Abhinav
  • 658
  • 1
  • 9
  • 27
1
vote
1 answer

Two way replication SymmetricDS

I have a two databases: oracle & postgres. SymmetricDS is syncing the tables in two way directions. It seems that everything is working. But I need a logic based on triggers that corrects the inserted/updated rows "on the fly". This triggers must be…
antropka
  • 21
  • 2
1
vote
1 answer

How to manually apply snapshot on subscriber of SQL Server 2000 database publication

I am trying to create replication between two SQL Server machines that are physically remote and have a slow connection between them. So I want to manually move the snapshot folder to the subscriber instead of letting it copy over the slow…
Ali Tarhini
  • 5,278
  • 6
  • 41
  • 66