Jump to letter: [
          
            ABCDEFGHIJKLMNOPQRSTUVWXY
          ]
        
	
        mydumper - How MySQL DBA & support engineer would imagine 'mysqldump'
        
        
        - Description:
- mydumper is complement to mysqldump, for MySQL data dumping, providing:
1. Parallelism (hence, speed) and performance (avoids expensive character set
   conversion routines, efficient code overall)
2. Easier to manage output (separate files for tables, dump metadata, etc, easy
   to view/parse data)
3. Consistency - maintains snapshot across all threads, provides accurate
   master and slave log positions, etc
4. Manageability - supports PCRE for specifying database and tables inclusions
   and exclusions
It does not support schema dumping and leaves that to 'mysqldump --no-data'
It was born as weekend experiment, and apparently it worked well enough to have
public appearance.
Authors:
--------
	Andrew Hutchins <andrew.hutchins@sun.com>
	Domas Mituzas <domas@dammit.lt>
	Mark Leith <mark.leith@sun.com> 
Packages:
        
	Changelog:
        
	
            | by J.Horacek (2012-08-01): - include myloader |