Giter Site home page Giter Site logo

mysql-db-backup's Introduction

mysql-db-backup
===============

Script for backing up a MySQL Database with different options
to reduce load.

Motivation
----------

The impact of dumping my databases caused service outages be-
cause the load of dumping was too high. So this script offers
several ways to reduce load at dumping the databases.

Features
--------

- Use "nice" for CPU throttling
- Use "ionice" for I/O throttling
- Use "cstream" for mysqldump bandwidth limitation
- Use "split" for dump file splitting.
- Use compression with xz/bzip2/gzip
- Exclude databases
- Logging / Debugging

Requirements
------------

Install the tools mentioned above for the features
to work. If not available backup will be done with-
out these tools if possible.

Databases to be backed up should use InnoDB-Storage-
Engine(should be default). With MyISAM, I think, dumps
are not consistent.

Installation and Usage
----------------------

- Copy this script to your system and set +x bit.
- Review the config part at the top of the script and
  configure it to your needs
- Let cron call the script, at a time that is convenient
  for you
- Create the password file with the password corres-
  ponding to the username you configured in the script,
  like this:

--- /root/.my.cnf.save -------

[client]
password="yourbackupoperatorpasswordhere"

--- /root/.my.cnf.save END ---

Further notes
-------------

Split is used because it may give you advantages 
with your backup handling. Files are split into
small pieces, so there is a chance, that one or
more files having unchanged content and maybe 
you do not have to back it up because of that.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.