Tag: Master-slave data synchronization

2 Posts

A complete guide to MySQL data migration without downtime: consistency guarantee and practical solution analysis
MySQL data migration knowledge map 1 Core challenges and technology selection 1.1 Three major challenges of data migration Business continuity requirements: Financial-level business requires 99.99% availability throughout the year Data consistency guarantee: Amount data must have zero error (refer to the "Payment System Data Security Specification" of the central bank) Incremental synchronization complexity: Synchronization delay control in the scenario of 10,000 TPS per second 1.2 Tool comparison matrix Tool name Backup type Lock mechanism Recovery speed Applicable scenarios Official document link mysq…
Will data be lost after a database transaction is committed? In-depth analysis of persistence mechanisms and optimization solutions
Introduction In database systems, transaction durability is the most critical part of the ACID feature. It promises that once a transaction is successfully committed, the modified data will take effect permanently, and the data will not be lost even if the system crashes or hardware fails. However, the realization of this promise is not as simple as it seems. Will the data really not be lost after the transaction is committed? This depends on the database's internal log mechanism, persistence strategy, distributed architecture design, and hardware redundancy capabilities. This article will start from a single...