Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
92 views

I am configuring a bidirectional replication between node1 and node2. The configuration of node1 as publisher and node2 as subscriber is correct: the data is replicated and no errors occur. The ...
Marcello Basso's user avatar
3 votes
1 answer
44 views

I have Olake job CDC Replication as described by Olake(https://olake.io/) with following: mysql source lakekeeper as catalog of parquet ADLS gen2 as destination with app registraction steps Source ...
user26391929's user avatar
0 votes
0 answers
66 views

I've successfully traced the logs for standard Backup Jobs (Jobs -> Backup) in the Veeam database, but I'm unable to find the equivalent logs for Backup Copy Jobs (Jobs -> Backup Copy). The UI ...
Medinho's user avatar
  • 223
1 vote
4 answers
132 views

I already have the code I need. I just need to apply this code in different columns and I'm not being able to do it that. Right now, I'm only able to apply it in one column. That's the code below: ...
Sullivan2021'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
1 vote
2 answers
86 views

We have source cluster with security protocol SASL_SSL and target cluster without any authorization. Just PLAINTEXT. MirrorMaker2 in kafka conenct mode writes messages about connection problem: INFO [...
Cumba's user avatar
  • 21
0 votes
1 answer
71 views

I have written a python program to parse mysql binlog. In the Query Event, there is a Q_CHARSET_CODE which indicate what character set is used for the logged query. This indicated that the logged ...
Gerald Me's user avatar
  • 127
0 votes
0 answers
44 views

I need your help with an issue that has left me dumbfounded for days. I have a setup with 2 artifactory servers: server 1, which hosts my private cargo registry, a repo of type "local". I ...
emahe's user avatar
  • 1
0 votes
0 answers
47 views

Many examples of Kafka topic configuration have RF = 3, min.insync.replicas = 2. In the case of a cluster of 5 brokers, if we use RF = 5, should min.insync.replicas = 3? That seems "natural" ...
alabaster's user avatar
  • 130
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
1 answer
68 views

I'm using PostgreSQL logical replication, and both the origin and destination databases have the same table structure — table A (a int primary key, b int). I'm trying to create a trigger that ...
Mateus Rauli's user avatar
0 votes
0 answers
38 views

I'm trying to set up a replication for my Apache SOLR which runs on a linux Server. The Slave is also on a debian12 distribution. Sadly I havent found any useful guide to set up the replication. I ...
Lenny's user avatar
  • 1
0 votes
1 answer
122 views

I'm trying to share a single table (MY_TABLE) from the MY_DATABASE.MY_SCHEMA schema in a Snowflake source account (SOURCE_ACCOUNT) to a target account (TARGET_ACCOUNT) in the same organization but ...
Lonely Planeteer's user avatar
2 votes
1 answer
101 views

I'm attempting to configure cross-region replication between two S3 buckets in different AWS accounts and regions, but replication is not occurring. There are no relevant errors in CloudTrail or ...
jipot's user avatar
  • 146
1 vote
0 answers
63 views

I’m designing a multi-datacenter architecture using Apache Pulsar with geo-replication enabled. Architecture Overview: Apache Pulsar version: 4.0.2 Helm Chart version: pulsar-3.9.0 BookKeeper: 5 ...
Mustafa ALTINIŞIK's user avatar
0 votes
0 answers
55 views

I am building a large software art project including a number of data files and build artifacts locally. The size of the entire generated set is around 20 gigabytes. Contained in the build results are ...
Steven's user avatar
  • 720
0 votes
0 answers
195 views

I have a problem on a PG16 cluster (under Patroni) with two tasks that seem to be blocked given the start time of the transaction. I don't know if I can stop the processes without crashing the ...
Stan92's user avatar
  • 453
0 votes
0 answers
266 views

I work in an organization with multiple divisions, perhaps each one is in a different region and their Snowflake account is set up in a different region. It is not an uncommon need for my division to ...
juststackoverflow's user avatar
0 votes
0 answers
216 views

I have encountered a problem when using ACL authentication in a Redis Replication + Sentinel configuration. First, to exclude any questions about permissions, I will use a user with full access to all ...
mersiders's user avatar
1 vote
0 answers
120 views

We are running a self-hosted mongodb deployment as a three member replica set (PSA), recently upgraded from mongodb 6.0.3 to 8.0.4. We are running in a containerized environment. Every so often, I see ...
Chad Showalter's user avatar
0 votes
0 answers
25 views

Background : HBase reads seem to fall under the 'strong consistency' model, as : All reads are served from the master where the data has already been committed. As a result, the clients seem to always ...
Harshit's user avatar
  • 1,331
1 vote
1 answer
73 views

In a C# application, using nHibernate & fluent nHibernate, we're looking to capture certain INSERT, UPDATE, DELETE queries performed on a Sqlite database in order to replicate them. We'd like to ...
pp-mluthi's user avatar
0 votes
1 answer
137 views

I want to have AWS step functions created in two different regions. Let's say us-east-1 and eu-central-1. When I invoke the step functions they run in their own region and will have their execution ...
Sandy's user avatar
  • 2,675
1 vote
1 answer
122 views

pg13 streaming replication returns empty pg_replication_slot on SLAVE replica. select * from pg_replication_slots; returns nothing on SLAVE replica when do select status,slot_name, ...
toanwa's user avatar
  • 13
0 votes
1 answer
38 views

Due to performance reasons I want to have a portion of my data to be available on a second system (Reporting). I expect the data to be distributed like: (abstract) Production (today) todays data &...
Stack Bounce's user avatar
1 vote
1 answer
269 views

My Goal is to replicate a TArray<UHealthComponent*> in a ListenServer configuration for 2 players For more context the TArray is inside of an ActorComponent named ShipStats attached to the ...
Coocys's user avatar
  • 61
0 votes
1 answer
120 views

We have created new publication and then subscription replicate data from D to E database. Publication is set to run every 10 seconds Subscription is set to run continuously. It was working fine and ...
Manish Joisar's user avatar
1 vote
0 answers
95 views

I have an issue with catching all the data with AFTER INSERT trigger on my PostgreSQL 16 logical replication. I simplified my tables into create table customer (id serial, email text); create table ...
sh4rkyy's user avatar
  • 422
0 votes
1 answer
301 views

I am writing a client implementation of the Postgres logical replication protocol, but I encountered an unexpected behavior, in the DML UPDATE event I always get all the values ​​of the table columns, ...
S.A.N's user avatar
  • 101
0 votes
1 answer
358 views

I was considering changing the replication from LRS to ZRS and i've found the description, which says no downtime is needed: "During a conversion, you can access data in your storage account with ...
ghostika's user avatar
  • 1,505
0 votes
0 answers
47 views

Hi everyone i have a problem and i need to solve for my project of university. One of my teachers said i needed a replicate database but when i make a simple request Model.find() return a error ...
James's user avatar
  • 19
0 votes
0 answers
82 views

I have 3 servers running PostgreSQL 9.6. I have cascading streaming replication working. primary -> standby1 -> standby2 Any DB changes in primary reach standby2. So all good to this point. ...
user1667016's user avatar
1 vote
1 answer
95 views

This is the first Actor I built for Multiplayer with replication so if you think I should have used another technique tell me. I'm running UE5.4 with two player and as net connection I use listen ...
thacaout's user avatar
1 vote
1 answer
197 views

I'm using SymmetricDS to replicate a table structure (DDL), and I ran the following sequence of commands to sync the triggers and send the table schema: bin\symadmin.bat -e rada-000 --node=001 sync-...
Lucas Ramos's user avatar
0 votes
0 answers
342 views

I have a postgresql source database where I have enabled logical replication to replicate data in another postgresql destination database. Publication contains only one table which is arround 3MBs of ...
Stavros Koureas's user avatar
0 votes
1 answer
125 views

I am working on an application where I need to perform some operations on users fetched from a Domain Controller (DC). The operations involve enabling the users and then setting properties for them. ...
Divya's user avatar
  • 3
0 votes
0 answers
355 views

I am setting up replication on SQL Server and I get this error, if I open the replication monitor there is this error, if I open the agent logs, there is also this error. What else can I check? No ...
user avatar
0 votes
1 answer
253 views

I am trying to set up merge replication with push transactions. I have SQL Server on google server and my local PC, I installed the radmin vpn program, I can connect through SQL Server Management ...
user avatar
-2 votes
1 answer
147 views

I have to index a view to query much faster, but this view has underlying view with a linked server that I cannot schema bind. Which I can't because it is in a linked server and don't have direct ...
Jonas Samarita's user avatar
0 votes
0 answers
39 views

I've been running a 3 member replicaset for 8 months, but due to failures at a host, 2 members failed. I got my surviving member to restart in standalone mode. Question: now that the host failures are ...
Sander de Ruiter's user avatar
0 votes
0 answers
62 views

I have been trying to configure the Merge replication in our small company for several people. My conditions: Publisher is on Google cloud behind a firewall Publisher is accessible only via IP ...
Sergey Alikin's user avatar
0 votes
1 answer
888 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
1 answer
1k views

I have a Google Cloud SQL PostgreSQL instance with 1 read replica. The replication lag is usually 100~200ms. I have the same setup with 2 VM instances that are also on Google Cloud and the lag is ...
Nguyen Nguyen's user avatar
0 votes
0 answers
133 views

I have a blue green deployment on AWS RDS Postgresql which is basically using logical replication of Postgresql. Whenever an insert takes place on table A on green env I would like to be inserted on ...
Vasileios Giannakidis's user avatar
0 votes
0 answers
52 views

I'm trying to direct my read queries to my read replica in a production setup. Django allows defining multiple databases, so I added two databases like: DATABASES = { "default": { ...
Yash Kumar Verma's user avatar
0 votes
1 answer
175 views

Issue: local to cloud replication works only manually. Trying to automate. -- Environments: Local in Docker (via docker-compose) Cloud on influxdata.com Following this tutorial: https://docs....
Martin Karu's user avatar
0 votes
1 answer
348 views

Can someone explain why they say db replication is more ideal for read scalability while sharding is more ideal for write scalability? From my current understanding: replication allows read traffic ...
Joshua Choe's user avatar
1 vote
1 answer
20 views

We have couple of microservices, first microservice A has some data which is like reference data, we plan to share these data with other microservices, plan is to have copies of the data in ...
Vishwanath Nagendra's user avatar
1 vote
0 answers
260 views

What is the meaning of the namespace during the creation of Harbor replication rule. I have seen this: (https://goharbor.io/docs/2.0.0/administration/configuring-replication/create-replication-rules/),...
MichalT's user avatar
  • 49
0 votes
1 answer
93 views

I am planning to use the replication support across clusters using Gridgain in the following way: I want to set up a GridGain cluster with 3 nodes. I will have 4 such clusters on 4 separate machines. ...
Halder's user avatar
  • 81

1
2 3 4 5
79