I've got a master-slave mysql replication using blackhole engine for some tables on slave, so I'm wondering what will happen if I enable master-master replication? Will the tables become empty on my 1st master?
Mysql master-master replication using blackhole engine
163 Views Asked by sgsv At
1
There are 1 best solutions below
Related Questions in MYSQL
- How to Retrieve Data from an MySQL Database and Display it in a GUI?
- How to change woocomerce or full wordpress currency with value from USD to AUD
- window.location.href redirects but is causing problems on the webpage
- Error: local variable 'bramka' referenced before assignment
- Products aren't displayed after fetching data from mysql db (node.js & express)
- status table for all entries (even in different dates) in database changing value when all checkboxes are checked
- Can't Fix Mariadb & Mysql ERROR 2002 (HY000): Can't connect to local server through socket '/tmp/mysql.sock' (2) On MacOs
- Express Mysql getting max ID from table not working cought in a promise
- failed to upload a table from sql file
- Update a MySQL row depending on the ID in Google Sheets Apps Script
- Use row values from another table to select them as columns and establish relations between them (pivot table)
- SQL: Generate combination table based on source and destination column from same table
- How to display the column names which have only unique non-null values in MySQL table?
- mysql query takes too long because of wrong indexes usage
- Multitable joining in Sql
Related Questions in REPLICATION
- Which column to use for ordering change data read from change tables in SQL Server?
- Postgresql Database Replicate Using Docker-Compose File
- PG_chameleon during start replica turns columns into UNKNOWN_COL{number}
- Consistency of replicated map across cluster nodes
- DB Replicating from different publisher to a sing subscriber
- How to route different db requests to read only instance
- Replication postgresql database error connection between master to standby
- mongodb statefulset pods restarting without any useful error during replication
- Snapshots in Logical Decoding
- SQL Server replication: Need to remove articles from the publication
- TSQL query for transactional replication log reader agent account in SQL Server
- Does PostgresSQL 16 support Active Active replication ? I am using the free version
- Invoke-Command to a DC for replication not working in Windows 11
- Postgres connection failed while Debezium connector streaming changes
- How to Achieve Master-Master Replication in MongoDB for Two Databases in Different Locations?
Related Questions in MASTER-SLAVE
- STM32 SPI slave doesn't read data correctly and transmits incorrect data
- First mysql docker containers restarting when a second mysql container is started
- Latency when backup becomes primary
- Changing binlog_format in MariaDB slave
- failover-abort-no-good-slave error in Redis-Sentinel auto failover
- Execute a function every 10 ms with also some offset and random jitter
- How does data reading works in redis in terms of master slave server
- Cloudera configuration between Master and Slave Nodes
- How to run two Java versions on same jenkins slave
- how to use redline in jmeter master-slave
- In distributed jmeter load testing, got stuck at 'Waiting for possible shutdown message on port 4445'
- Is any solution related to SparkConnectGrpcException?
- What is the meaning of Slave Offset and how is this term defined in plc programming context?
- How to test load-balancer of MaxScale
- RedBean PHP for master/slave MYSQL databases
Related Questions in BLACKHOLE
- MediaStream and MediaRecord with virtual device interface
- Recording loopback using Blackhole on python
- Reverse AODV in NS2 with blackhole attack
- Stream audio from videoconference to azure speech translate using python
- Is there any nullfs, black hole or void (virtual) drive/directory for Windows?
- How to solve no sound output from virtual audio device(BlackHole 2ch) when I use BlackHole to capture system output audio on Mac?
- routing audio data from application to virtual audio driver in MAC OS
- Mysql master-master replication using blackhole engine
- Remove blackhole from Exim4 user
- JMH - why do I need Blackhole.consumeCPU()
- Cakephp 2.x get message { "name": "The request has been black-holed", "url": "\/rest_sms_boxs.json" } in Restfull api
- Cakephp : Security Component and double click
- How to create whirlpool/vortex effect?
- Honeypot: Close previous tab after after hidden link initiates target=_blank?
- How do I get (external) data into CakePHP with Security on?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The answer is: they won't. Replication simply ignoring my blackhole tables. What I have done to test this: Set up docker container with the mysql db. Created a copy of the db to another docker mysql container. Enabled master-master replication on both dbs. Added some different data to both dbs. Changed engine of the couple of tables with BLACKHOLE on the second master. Then I added some different data to both dbs, and checked that on the first master there were no changes in tables that has the BLACKHOLE engine on the second master.