2017 © Pedro Peláez
 

library slimdump

slimdump is a little tool to help you creating dumps of large MySQL-databases.

image

webfactory/slimdump

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  • Wednesday, July 11, 2018
  • by webfactory
  • Repository
  • 16 Watchers
  • 75 Stars
  • 13,555 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 8 Forks
  • 4 Open issues
  • 21 Versions
  • 44 % Grown

The README.md

webfactory Logo slimdump

Build Status Coverage Status , (*1)

slimdump is a little tool to help you create configurable dumps of large MySQL-databases. It works off one or several configuration files. For every table you specify, it can dump only the schema (CREATE TABLE ... statement), full table data, data without blobs and more., (*2)

Why?

We created slimdump because we often need to dump parts of MySQL databases in a convenient and reproducible way. Also, when you need to analyze problems with data from your production databases, you might want to pull only relevant parts of data and hide personal data (user names, for example)., (*3)

mysqldump is a great tool, probably much more proven when it comes to edge cases and with a lot of switches. But there is no easy way to create a simple configuration file that describes a particular type of dump (e.g. a subset of your tables) and share it with your co-workers. Let alone dumping tables and omitting BLOB type columns., (*4)

Installation

When PHP is your everyday programming language, you probably have Composer installed. You can then easily install slimdump as a global package. Just run composer global require webfactory/slimdump. In order to use it like any other Unix command, make sure $COMPOSER_HOME/vendor/bin is in your $PATH., (*5)

Of course, you can also add slimdump as a local (per-project) Composer dependency., (*6)

We're also working on providing a .phar package of slimdump for those not using PHP regularly. With that solution, all you need is to have the PHP interpreter installed and to download a single archive file to use slimdump. You can help us and open a pull request for that :-)!, (*7)

Usage

slimdump needs the DSN for the database to dump and one or more config files:, (*8)

slimdump {DSN} {config-file} [...more config files...], (*9)

slimdump writes to STDOUT. If you want your dump written to a file, just redirect the output:, (*10)

slimdump {DSN} {config-file} > dump.sql, (*11)

If you want to use an environment variable for the DSN, replace the first parameter with -:, (*12)

MYSQL_DSN={DSN} slimdump - {config file(s)}, (*13)

The DSN has to be in the following format:, (*14)

mysql://[user[:password]@]host[:port]/dbname[?charset=utf8mb4], (*15)

For further explanations have a look at the Doctrine documentation., (*16)

Optional parameters and command line switches

no-progress

This turns off printing some progress information on stderr. Useful in scripting contexts., (*17)

Example: slimdump --no-progress {DSN} {config-file}, (*18)

buffer-size

You can also specify the buffer size, which can be useful on shared environments where your max_allowed_packet is low. Do this by using the optional cli-option buffer-size. Add a suffix (KB, MB or GB) to the value for better readability., (*19)

Example: slimdump --buffer-size=16MB {DSN} {config-file}, (*20)

single-line-insert-statements

If you have tables with a large number of rows to dump and you are not planning to keep your dumps under version control, you might consider writing each INSERT INTO-statement to a single line instead of one line per row. You can do this by using the cli-parameter single-line-insert-statements. This can speed up the import significantly., (*21)

Example: slimdump --single-line-insert-statements {DSN} {config-file}, (*22)

output-csv

This option turns on the CSV (comma separated values) output mode. It must be given the path to a directory where .csv files will be created. The files are named according to tables, e. g. my_table.csv., (*23)

CSV files contain only data. They are not created for views, triggers, or tables dumped with the schema dump mode. Also, no files will be created for empty tables., (*24)

Since this output format needs to write to different files for different tables, redirecting stdout output (as can be done for the default MySQL SQL mode) is not possible., (*25)

Experimental Feature CSV support is a new, experimental feature. The output formatting may change at any time., (*26)

Configuration

Configuration is stored in XML format somewhere in your filesystem. As a benefit, you could add the configuration to your repository to share a quickstart to your database dump with your coworkers., (*27)

Example:, (*28)


<slimdump>
  


</slimdump>

Conditions

You may want to select only some rows. In that case you can define a condition on a table., (*29)

<?xml version="1.0" ?>
<slimdump>
  <!-- Dump all users whose usernames begin with foo -->
  <table name="user" dump="full" condition="`username` LIKE 'foo%'" />
</slimdump>

In this example, only users with a username starting with 'foo' are exported: A simple way to export roughly a percentage of the users is this:, (*30)

<?xml version="1.0" ?>
<slimdump>
  <!-- Dump every tenth user -->
  <table name="user" dump="full" condition="id % 10 = 0" />
</slimdump>

This will export only the users with an id divisible by ten without a remainder, e.g. about 1/10th of the user rows (given the ids are evenly distributed)., (*31)

If you want to keep referential integrity, you might have to configure a more complex condition like this:, (*32)

<?xml version="1.0" ?>
<slimdump>
  <!-- Dump all users whose usernames begin with foo -->
  <table name="user" dump="full" condition="id IN (SELECT author_id FROM blog_posts UNION SELECT author_id from comments)" />
</slimdump>

In this case, we export only users that are referenced in other tables, e.g. that are authors of blog posts or comments., (*33)

Dump modes

The following modes are supported for the dump attribute:, (*34)

  • none - Table is not dumped at all. Makes sense if you use broad wildcards (see below) and then want to exclude a specific table.
  • schema - Only the table schema will be dumped
  • noblob - Will dump a NULL value for BLOB fields
  • full - Whole table will be dumped
  • masked - Replaces all chars with "x". Mostly makes sense when applied on the column level, for example for email addresses or user names.
  • replace - When applied on a element, it replaces the values in this column with either a static value, or a nice dummy value generated by Faker. Useful e.g. to replace passwords with a static one or to replace personal data like the first and last name with realistically sounding dummy data.

Wildcards

Of course, you can use wildcards for table names (* for multiple characters, ? for a single character)., (*35)

Example:, (*36)


<slimdump>
  


</slimdump>

This is a valid configuration. If more than one instruction matches a specific table name, the most specific one will be used. E.g. if you have definitions for blog_* and blog_author, the latter will be used for your author table, independent of their sequence order in the config., (*37)

Replacements

You probably don't want to use any personal data from your database. Therefore, slimdump allows you to replace data on column level - a great instrument not only for General Data Protection Regulation (GDPR) compliance., (*38)

The simplest replacement is a static one:, (*39)

<?xml version="1.0" ?>
<slimdump>
    <table name="users" dump="full">
        <column name="password" dump="replace" replacement="test" />
    </table>
</slimdump>

This replaces the password values of all users with "test" (in clear text - but for sure you have some sort of hashing in place, do you?)., (*40)

To achieve realistically sounding dummy data, slimdump also allows basic Faker formatters. You can use every Faker formatter which needs no arguments and modifiers such as unique (just seperate the modifier with an object operator (->), as you would do in PHP). This is especially useful if your table has a unique constraint on a column containing personal information, like the email address., (*41)

<?xml version="1.0" ?>
<slimdump>
    <table name="users" dump="full">
        <column name="username" dump="replace" replacement="FAKER_word" />
        <column name="password" dump="replace" replacement="test" />
        <column name="firstname" dump="replace" replacement="FAKER_firstName" />
        <column name="lastname" dump="replace" replacement="FAKER_lastName" />
        <column name="email" dump="replace" replacement="FAKER_unique->safeEmail" />
    </table>
</slimdump>

Other databases

Currently, only MySQL is supported. Feel free to port it to the database of your needs., (*42)

Development

Building the Phar

  • Make sure Phive is installed
  • Run phive install to install tools, including Box
  • Run composer install --no-dev to make sure the vendor/ folder is up to date
  • Run tools/box compile to build slimdump.phar.

Tests

You can execute the phpunit-tests by calling vendor/bin/phpunit., (*43)

This tool was written by webfactory GmbH, Bonn, Germany. We're a software development agency with a focus on PHP (mostly Symfony). We're big fans of automation, DevOps, CI and CD, and of open source in general., (*44)

If you're a developer looking for new challenges, we'd like to hear from you! Otherwise, if this tool is useful for you, add a ⭐️., (*45)

Copyright 2014-2022 webfactory GmbH, Bonn. Code released under the MIT license., (*46)

The Versions

11/07 2018

dev-master

9999999-dev

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

11/07 2018

dev-Restruct

dev-Restruct

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

28/06 2018

1.8.3

1.8.3.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

27/06 2018

1.8.2

1.8.2.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

29/05 2018

1.8.1

1.8.1.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

29/05 2018

dev-quote_trigger_name

dev-quote_trigger_name

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

12/03 2018

1.8.0

1.8.0.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

15/02 2018

dev-TidyUpUtil.php

dev-TidyUpUtil.php

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

15/01 2018

1.7.1

1.7.1.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

27/10 2017

1.7.0

1.7.0.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

11/10 2017

1.6.1

1.6.1.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

15/05 2017

1.6.0

1.6.0.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

27/06 2016

1.5.0

1.5.0.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

07/06 2016

1.4.3

1.4.3.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

03/06 2016

1.4.2

1.4.2.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

09/12 2015

1.4.1

1.4.1.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

04/12 2015

1.4.0

1.4.0.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

04/12 2015

1.3.0

1.3.0.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

28/11 2015

1.2.0

1.2.0.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

27/11 2015

1.1.0

1.1.0.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires

 

The Development Requires

21/11 2014

1.0.0

1.0.0.0

slimdump is a little tool to help you creating dumps of large MySQL-databases.

  Sources   Download

MIT

The Requires