how to limit bandwidth used by mysqldump - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T01:56:57Zhttp://stackoverflow.com/feeds/question/386874http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/386874/how-to-limit-bandwidth-used-by-mysqldump2how to limit bandwidth used by mysqldumpʞɔıu2008-12-22T17:49:34Z2008-12-29T11:59:03Z
<p>I have to dump a large database over a network pipe that doesn't have that much bandwidth and other people need to use concurrently. If I try it it soaks up all the bandwidth and latency soars and everyone else gets messed up.</p>
<p>I'm aware of the --compress flag to mysqldump which help somewhat.</p>
<p>How can I do this without soaking up all the bandwidth over this connection?</p>
<p>Update:</p>
<p>The suggestion to copy a dumpfile using scp with the -l flag is a good one, but I should note that I don't have ssh access to the database server.</p>
http://stackoverflow.com/questions/386874/how-to-limit-bandwidth-used-by-mysqldump/386887#3868870Answer by Filip Ekberg for how to limit bandwidth used by mysqldumpFilip Ekberg2008-12-22T17:53:03Z2008-12-22T17:53:03Z<p>If you send it over TCP, the bandwidth will be shared equally between all parties. If you want to lower the speed even more, you need to shape your device to only allow a certain amount of data going out.</p>
http://stackoverflow.com/questions/386874/how-to-limit-bandwidth-used-by-mysqldump/386898#3868981Answer by bradheintz for how to limit bandwidth used by mysqldumpbradheintz2008-12-22T17:56:06Z2008-12-22T17:56:06Z<p>One trick I've used is to specify CSV format rather than the insert. It doesn't change how much bandwidth you use per unit time, but it can reduce the total number of bytes you're pulling out.</p>
http://stackoverflow.com/questions/386874/how-to-limit-bandwidth-used-by-mysqldump/387103#3871030Answer by Byron Whitlock for how to limit bandwidth used by mysqldumpByron Whitlock2008-12-22T19:27:47Z2008-12-22T19:27:47Z<p>On the client, you can run a proxy that will limit the speed of the download.
You can also control # of connections etc. </p>
<p>If you are on windows, this should work nicely: </p>
<p><a href="http://www.youngzsoft.net/ccproxy/index.html" rel="nofollow">http://www.youngzsoft.net/ccproxy/index.html</a></p>
http://stackoverflow.com/questions/386874/how-to-limit-bandwidth-used-by-mysqldump/388706#3887063Answer by Francois Wolmarans for how to limit bandwidth used by mysqldumpFrancois Wolmarans2008-12-23T11:52:24Z2008-12-29T09:55:39Z<p>You will have to have access to a linux machine (sorry I'm a linuxy sort of person).</p>
<p>An ingress policy can decrease the amount of incoming traffic, but the server on the other side needs to have a farely well behaved TCP/IP stack.</p>
<p>tc qdisc add dev eth0 handle ffff: ingress <br>
tc filter add dev eth0 parent ffff: protocol ip prio 50 \ <br>
u32 match ip src server.ip.address/32 police rate 256kbit \ <br>
burst 10k drop flowid :1 <br>
tc qdisc add dev eth0 root tbf \<br>
rate 256kbit latency 25ms burst 10k <br></p>
<p>You can find more information on ingress filters in the advanced routing howto.</p>
<p><a href="http://www.linux.org/docs/ldp/howto/Adv-Routing-HOWTO/index.html" rel="nofollow">http://www.linux.org/docs/ldp/howto/Adv-Routing-HOWTO/index.html</a></p>
<p><hr /></p>
<p>If you are doing it in linux, you can dump the file locally, compress it and use scp to copy the file with the -l switch to limit the bandwidth used:</p>
<p>-l limit
Limits the used bandwidth, specified in Kbit/s.</p>
<p>eg</p>
<p>scp -l 16 dumpfile remotehost:filepathandname</p>
http://stackoverflow.com/questions/386874/how-to-limit-bandwidth-used-by-mysqldump/397528#3975281Answer by dbr for how to limit bandwidth used by mysqldumpdbr2008-12-29T11:17:57Z2008-12-29T11:17:57Z<p><a href="http://monkey.org/~marius/pages/?page=trickle" rel="nofollow"><code>trickle</code></a>?</p>
<blockquote>
<p>trickle is a portable lightweight userspace bandwidth shaper</p>
</blockquote>
<p>You don't mention how you are actually transffering the DB dump, but if the transfer happens over TCP/IP, trickle should work. For example, if you use <code>nc</code> (for example: <code>nc -L 1234 > backup.sql</code>) the following command will transfer the backup at no greater than 20KB/s:</p>
<pre><code>mysqldump [database name] | trickle -u 20 nc backup.example.com:1234
</code></pre>
http://stackoverflow.com/questions/386874/how-to-limit-bandwidth-used-by-mysqldump/397594#3975940Answer by Jon Topper for how to limit bandwidth used by mysqldumpJon Topper2008-12-29T11:59:03Z2008-12-29T11:59:03Z<p>Are you using a transactional table engine like InnoDB? Is this your master database? Be very careful! mysqldump will hold table locks and disrupt the production use of your database. Slowing down the backup will only cause this period of disruption to get longer. Always mysqldump to a local disc, and then copy the dump from there. </p>
<p>One other approach might be to set up a replication slave at your remote site, and take your backups from that. Then database updates will trickle over your contended link instead of coming down in one big lump.</p>
<p>Another alternative: do your backups when noone else is using the network :)</p>