All Questions
Tagged with replication synchronization
106 questions
0
votes
0
answers
87
views
Flutter Sync with SQFLite and CouchDB
Future<void> startReplication(Database database) async {
final replicator = await Replicator.create(ReplicatorConfiguration(
database: database,
target: UrlEndpoint(Uri.parse('ws://...
0
votes
1
answer
55
views
Can RedisShake be used as a data synchronization mechanism for MemoryDB?
Since AWS currently doesn't support cross-region data replication/sync across clusters, could RedisShake be used to replicate data?
I mean, i don't want to migrate data, instead i want to have high ...
0
votes
1
answer
1k
views
Clickhouse cluster replicas sync completion time issue
I'm trying to remove about 50 milliong of 40 billions rows table (one specific day based on event_date column) , I'm using lightweight delete with "where" clause and "where" has no ...
0
votes
1
answer
272
views
How to remove SQL Server transaction replication errors without restarting the full process. we have around 1 billion
We have setup transaction replication on around 40 tables. Which works fine for small tables except the large ones.
We have around 1 billion rows in a table and the replication takes a lot of time. ...
0
votes
1
answer
249
views
How to do bidirectional synchronization between multiple Redis severs
I am using multiple Redis servers , here one is master server and other one are replicas server. Suppose I wanna write something in master server then the changes will be reflected on replicas by ...
0
votes
1
answer
211
views
EC2 instance running S3 Sync command terminates before data transfer is complete
I have an EC2 instance running Linux. This instance is used to run aws s3 commands.
I want to sync the last 6 months worth of data from source to target S3 buckets. I am using credentials with the ...
0
votes
1
answer
81
views
Is there an algorithm to determine a point of divergence in two streams of data?
I have two data sources that should eventually contain the same data (i.e. a mobile app copy and a cloud backend copy). There are approximately 90k rows in the data source, and the mobile app has lost ...
0
votes
1
answer
599
views
Is it possible to enable replication on mysql from latest version to older version
I have mysql 8.0.27 but there is an issue with sort_buffer which is causing exceptions now we are planning to move back to 8.0.16 which we used earlier with no issues so is it possible to keep 8.0.27 ...
1
vote
0
answers
61
views
Freshdesk backfill sync into Azure SQL Server
What are the best methods for Syncing data from Freshdesk to Azure SQL Server?
I have tried methods such as Logic Apps, FiveTran, Rubber Stack, Automate.io, and Skyvia (Which worked for getting the ...
0
votes
2
answers
237
views
How to drop non-identity indexes in Postgres?
In continuation PostgreSQL Large Table Logical Replication Infinite Sync, has the exact same problem
But still could not find information about what non-identity indexes are and how to delete them.
1
vote
1
answer
2k
views
Syncing and Mirroring data between 2 servers automatically cPanel
I have two servers and both are working fine.
How to sync all my data from one server to another server/backup-storage/remote-storage.
I want to know if one of my server is down due to heavy load then ...
4
votes
1
answer
3k
views
CouchDB data synchronization
I'm developing a TODO app for myself. It has to be offline first so data synchronization became a problem soon. As to my searches, CouchDB does data sync (replication) very well but I'm having some ...
0
votes
2
answers
355
views
Sync a Maximo table to a GIS table (in real-time)
I want to sync the MAXIMO.WORKORDER table to a GIS.WORKORDER table.
Both the Maximo and GIS databases are Oracle databases (12c and 18c respectively)
The sync would be one-way
It would sync ...
0
votes
1
answer
120
views
Database synchronization and lost connection
I have to create a way for database replication. The scenario is as follows:
I have one master database and a lot of client databases. Sometimes clients works offline with their local databases. When ...
11
votes
3
answers
6k
views
What are the use cases for a Vector Clock versus a Version Vector?
I have been having trouble finding an example of what use cases are suitable for Vector Clocks and Version Vectors, and how they might differ. I understand that they largely work in the same way, with ...