Parallel Logical Backup and Restore Strategies for MySQL using MyDumper
Traditional MySQL backup utilities like mysqldump operate using a single-threaded model, processing tables sequentially. This limitation often results in extended backup windows for large datasets. To address this, mydumper was developed as a multi-threaded logical backup tool. It allows for concurrent data extraction from tables and simultaneo ...
Posted on Sun, 23 Aug 2026 16:21:01 +0000 by riginosz
Installing and Using MyDumper for MySQL Logical Backups
Installation Dependencies
dnf install -y cmake gcc gcc-c++ git make
Downloading and Installing MyDumper
wget https://github.com/mydumper/mydumper/releases/download/v0.14.1-1/mydumper-0.14.1-1.el9.x86_64.rpm
dnf install mydumper-0.14.1-1.el9.x86_64.rpm -y
MyDumper Configuration Options
mydumper --help
Displays comprehensive options for con ...
Posted on Sat, 27 Jun 2026 17:13:28 +0000 by peppino