Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
76 views

Due to performance concerns by the system devs and internal politics we cannot add triggers to the prod tables to capture deletions (long story, we need to to implement pseudo-CDC to a third party ...
MalcolmS's user avatar
0 votes
0 answers
46 views

In async replication with PostgreSQL, for example, source db will just transmit chunks of their WAL directly via network to target db, plain and simple. But I saw something like Q Replication by IBM ...
caballeros's user avatar
1 vote
0 answers
97 views

My task is to perform continous replication on a Firebird 3.0.5 database. I only have read-only access. The data will go to the Google Cloud Platform, either Cloud SQL or BigQuery. Read-only means I ...
Grégoire Borel's user avatar
0 votes
2 answers
77 views

My understanding is that PostgreSQL retains WAL from restart_lsn because the logical decoder might need data before confirmed_flush_lsn to produce output for transactions that have not yet been ...
Marcin Barczyński's user avatar
0 votes
0 answers
29 views

I want to replicate Oracle to PostgreSQL in real time with schema evolution support. Is there is any open source tool available? I am not using Oracle Goldengate. It is too heavy and time consuming to ...
Pokhraj Das's user avatar
0 votes
0 answers
60 views

I was starting to configure replication on SQL Server database. I created a distributor with the following command: exec sp_adddistributiondb @database = N'prod_database', @...
Jose Luis Valdez de la Cruz's user avatar
0 votes
0 answers
78 views

This question is about SQL Server replication. I am running SQL Server 2019 v15.0.4420.2 and I get a large number of replicated tables from outside the organisation. What I am looking for is a SQL ...
Maxcot's user avatar
  • 1,617
0 votes
0 answers
48 views

I'm using a multi-node Galera Cluster and encountered the following two scenarios: Case 1 — Certification Conflict (Deadlock) occurs: Node B and Node C both start transactions. Both try to update the ...
samsamsamsmasma's user avatar
1 vote
0 answers
36 views

I want to replicate multiple databases to 2 different OS Centos9(master) OS Ubuntu(slave) but after the command sudo -u postgres \ pg_basebackup -h primary-ip-addr \ -p 5432 \ ...
Listochek's user avatar
0 votes
1 answer
112 views

Description The following table lists 2 DB servers using PostgreSQL streaming replication for synchronization: Server Role Method Mode db01 Primary db02 Standby Streaming replication async db02 is ...
rook's user avatar
  • 29
0 votes
0 answers
51 views

I am setting up SSL encryption for PostgreSQL replication and have the following configuration: PostgreSQL Version: 14.3 OpenSSL Version: 3.1.0 Configuration Details: I have enabled encrypted ...
manasa's user avatar
  • 41
0 votes
1 answer
68 views

Code do $$BEGIN perform pg_create_logical_replication_slot('test', 'pgoutput', false); END$$ ; create publication Jalgi_pub for all tables; select * from pg_logical_slot_peek_binary_changes('test', ...
Andrus's user avatar
  • 28.2k
1 vote
2 answers
149 views

In Postgres, I want to stop the replication process on the primary. Secondary database is no more working and primary wal folder is growing in size. Can someone help me with what are the settings I ...
zolio's user avatar
  • 2,601
0 votes
0 answers
61 views

Is there a way to mirror or scrape data from an InfluxDB 1.8 database to a v 2.7.x database? If I were given two v. 2 databases I think the case would be covered by the (edge) data replication. But I ...
Nox's user avatar
  • 333
0 votes
1 answer
101 views

I'm working in a clustered MariaDB database with Galera and MaxScale in r/w routing. My question is if the commit command successful return implies a completed replication or not. This is the scenario:...
Tobia's user avatar
  • 9,605
0 votes
1 answer
112 views

I'd like to pull some data into SQL Server Express, from a high-current electrical test machine running SQL Server. The first problem I'm experiencing is that I can't get replication setup, because ...
david's user avatar
  • 2,706
0 votes
0 answers
199 views

Using PostgreSQL v13 streaming replication setup between a primary, and secondary (Hot Standby) server. After maintenance reboots of each server were complete, the secondary (a read-replica) is stuck ...
Marchetemsncom's user avatar
2 votes
0 answers
96 views

Anyone know how to turn off this unwanted output? I have several stored procedures that are used to tear down and rebuild replication for hundreds of databases. These stored procedures output lots of ...
ecksfiftyone's user avatar
0 votes
0 answers
34 views

I've implemented CustomRoutingDataSource. It should multiplex between two DataSources depending on whether current transation is ReadOnly or not. public class CustomRoutingDataSource extends ...
ibre5041's user avatar
  • 5,326
0 votes
1 answer
113 views

I am working on a replication between a old MySQL 8 database and a new PostgreSQL database. This is a two way replication but I am having issues with syncing a LongText column in MySQL to a Text ...
Jordi's user avatar
  • 1
0 votes
2 answers
54 views

We have enabled CLR on the primary database with a read only synchronized readonly failover database and it works perfectly using the following instruction. IF EXISTS (SELECT * FROM sys....
Jed's user avatar
  • 1,043
1 vote
1 answer
122 views

I have been testing TLS encryption for my Postgres database. All the external client connections are using SSL for encryption. I tried to query the pg_stat_ssl view, which will list the information ...
manasa's user avatar
  • 41
0 votes
1 answer
84 views

I have a table in production whose structure I want to modify. I can ALTER the table to add column but the column gets added at the end, may be the order may not matter. But at least visually I see it ...
Subhendu Mahanta's user avatar
0 votes
0 answers
147 views

I have setup a logical replication in PostgreSQL and have made the changes in postgres.conf where i have set wal_level = 'logical' The create subscription part works well but the create subscriber ...
opensource-developer's user avatar
0 votes
0 answers
67 views

I have 2 postgres clusters (A and B) on different servers. Whenever data is written to the table on server A, I want to copy the data to the table on server B. But the data retention in the table on ...
CBat's user avatar
  • 13
0 votes
1 answer
889 views

Postgres 13 on AWS RDS Replication slot is growing in size CPU and I/O are low on both master and slave The subscriber seems to be stuck at 33533/7D2841D8 even though the received LSN keeps advancing. ...
mj_'s user avatar
  • 6,469
0 votes
0 answers
362 views

I have this error, and I don't know how to fix it correctly. I saw people doing pg_basebackup everytime it happens. There is any better way? 2024-08-27 12:27:41.521 CEST [1] LOG: starting PostgreSQL ...
ABC's user avatar
  • 135
0 votes
1 answer
1k views

We are experimenting with patroni Multi Datacenter HA with postgres16 using replication slots. At high level for building the remote cluster from scratch , we are by running base backup, while active ...
Ganesh's user avatar
  • 413
0 votes
1 answer
198 views

We have a database in Azure SQL Server that we want to replicate continually to an On-Prem 2019 SQL Server. We are using Azure Data Sync but it fails every once in a while and we can't find out how to ...
daniel yunker's user avatar
0 votes
0 answers
102 views

I understand that Merkle Trees can be used to replicate data and guarantee integrity of the data in byzantine environment (where you don't trust all the parties) and that systems like cansandra use it ...
Luis Santos's user avatar
0 votes
1 answer
570 views

We are using Amazon Aurora RDS with Postgres. We have Multi AZ deployment, with two instances, 1 writer and 1 reader replica. Now the question is, if the synchronization is synchronous or asynchronous ...
Lukáš Křečan's user avatar
0 votes
0 answers
167 views

I'm using a SQL Server on-prem source for a DMS to replicate to a SQL Server RDS. Every night, at about midnight, I'm seeing a spike of ~1.6M CDC incoming changes on my DMS task, but nothing is making ...
Brent Heritier's user avatar
0 votes
2 answers
519 views

I have this scenario: My php web application is deployed in a clustered environment, it uses a replicated mariadb database with galera. It has to acquire an exclusive lock on database row resource and ...
Tobia's user avatar
  • 9,605
1 vote
1 answer
570 views

Last_IO_Error: Error connecting to source 'repl@mysql-master:3306'. This was attempt 1/86400, with a delay of 60 seconds between attempts. Message: SSL connection error: error:0A000086:SSL routines::...
Yoey's user avatar
  • 41
0 votes
0 answers
3k views

There are similar posts and answers to my issue, however they could not help me. I am using PostgreSQL v16.3 and the latest version of Docker. I am creating a very basic PostgreSQL cluster using a ...
joccafi's user avatar
  • 98
0 votes
1 answer
696 views

I have a mariadb RDS database deployed as a multi-AZ in my AWS account, engine version 10.6.16. This DB serves as the main backend database serving ~100 connections per second. I also have a DMS ...
wattabak's user avatar
0 votes
0 answers
2k views

When queried using SELECT * FROM pg_replication_slots ; There's one more column as wal_status which has can be mainly either reserved vs extended. what is the main difference? will one has higher ...
sr7's user avatar
  • 229
1 vote
1 answer
111 views

I have two replicas for my main cassandra server. Both the replicas are not in sync with the main server. This happened because the replica servers were running into errors cause by commit logs for 3 ...
user24845938's user avatar
0 votes
1 answer
41 views

I am aware of the postgres config caveats mentioned here: The easiest way to ensure this does not become a problem is to have these parameters set on the standbys to values equal to or greater than on ...
Bhanuchander Udhayakumar's user avatar
1 vote
1 answer
193 views

I'm using mongodb-memory-server for the e2e-testing on the project and want to identify potential problems with replication lag. Is there any way we can emulate a large replication delay? Maybe there ...
Konstantin Zelinsky's user avatar
1 vote
1 answer
1k views

I have a PostgreSQL 11 streaming (ie. wal_type = replica) cascading replication scheme set up as follows: db1 -> db2 -> db3 What happens to db1 and db3 if I execute a pg_ctl promote on db2? ...
jotadepicas's user avatar
  • 2,511
0 votes
1 answer
195 views

I have a PostgreSQL server that has a pg_dump scheduled every day at 3 AM (low traffic time window) for backup purposes. These dump files are gzipped and stored at a convenient location. This server ...
jotadepicas's user avatar
  • 2,511
0 votes
1 answer
1k views

I need to create a new column for each record that DMS processes, right now I have the following mapping rule: { "rule-type": "transformation", "rule-id": &...
Jake Boomgaarden's user avatar
1 vote
0 answers
263 views

I have mariadb 10.3 master and slave running in AWS EC2, whose binlog format is MIXED for both. I want to migrate this db to Aurora MySQL using DMS and understand DMS needs the format to be in ROW. I ...
JollyRoger's user avatar
1 vote
0 answers
72 views

The definition of failback according to IBM docs is "the process of returning production to its original location after a disaster or a scheduled maintenance period". From my reading of ...
Anthony O's user avatar
  • 672
-1 votes
2 answers
332 views

We are using Qlik Replicate for replicating data from RDS Postgresql to Synapse. There is logical replication slot involved in this process, so here is the case when we start the replication, the ...
Gayatri Singh's user avatar
0 votes
0 answers
64 views

I have 1 write region (e.g., US), and 2 read regions (e.g., US and EU). I have a collection, and I want to write into it, using different partition keys. I wonder, is there a specified order for data ...
Denis's user avatar
  • 3,757
0 votes
0 answers
263 views

Result Set of MSrepl_commands I want to infer that whether its a insert/update/delete command . We need to check at day end the amount of data replicated per article by the transactional replication. ...
BK Shailender's user avatar
0 votes
0 answers
205 views

I'm working on a project where I need to deploy two MongoDB databases in different geographical locations. I want both databases to work independently, allowing reads and writes on both sides. However,...
kelany's user avatar
  • 1
0 votes
2 answers
549 views

Is there any service offering from AWS, that does real time replication of data from Oracle which is on premises to Oracle instance running on EC2 in AWS ? But the catch is, the table structures are ...
DBreaker's user avatar
  • 409

1
2 3 4 5
38