Mysqldump is a popular logical backup tool for MySQL which was originally written by Igor Romanenko.
Mysqldump performs logical backups (set of SQL statements). By default, mysqldump does not dump information_schema tables and it never takes performance_schema. But the major drawback of mysqldump is that it uses only one thread while doing backup and restore. (Even your server has 64 cores). To overcome this drawback, MySQL introduced new utilities on the Shell client. In this blog I am going to explain these new backup utilities.
Overview of MySQL Shell
The …
[Read more]