<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Compression for MySQL Replication	</title>
	<atom:link href="https://www.brandonchecketts.com/archives/compression-for-mysql-replication/feed" rel="self" type="application/rss+xml" />
	<link>https://www.brandonchecketts.com/archives/compression-for-mysql-replication</link>
	<description>Web Programming, Linux System Administation, and Entrepreneurship in Athens Georgia</description>
	<lastBuildDate>Mon, 16 Nov 2009 16:16:29 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>
		By: Brandon		</title>
		<link>https://www.brandonchecketts.com/archives/compression-for-mysql-replication/comment-page-1#comment-1575</link>

		<dc:creator><![CDATA[Brandon]]></dc:creator>
		<pubDate>Mon, 16 Nov 2009 16:16:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonchecketts.com/?p=206#comment-1575</guid>

					<description><![CDATA[The &#039;-P&#039; argument breaks traffic down by port.  here are all of the options.

&lt;pre&gt;
[root@dev ~]# iftop -h
iftop: display bandwidth usage on an interface by host

Synopsis: iftop -h &#124; [-npbBP] [-i interface] [-f filter code] [-N net/mask]

   -h                  display this message
   -n                  don&#039;t do hostname lookups
   -N                  don&#039;t convert port numbers to services
   -p                  run in promiscuous mode (show traffic between other
                       hosts on the same network segment)
   -b                  don&#039;t display a bar graph of traffic
   -B                  Display bandwidth in bytes
   -i interface        listen on named interface
   -f filter code      use filter code to select packets to count
                       (default: none, but only IP packets are counted)
   -F net/mask         show traffic flows in/out of network
   -P                  show ports as well as hosts
   -m limit            sets the upper limit for the bandwidth scale
   -c config file      specifies an alternative configuration file

iftop, version 0.17
copyright (c) 2002 Paul Warren &lt;pdw @ex-parrot.com&gt; and contributors
&lt;/pdw&gt;&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>The &#8216;-P&#8217; argument breaks traffic down by port.  here are all of the options.</p>
<pre>
[root@dev ~]# iftop -h
iftop: display bandwidth usage on an interface by host

Synopsis: iftop -h | [-npbBP] [-i interface] [-f filter code] [-N net/mask]

   -h                  display this message
   -n                  don't do hostname lookups
   -N                  don't convert port numbers to services
   -p                  run in promiscuous mode (show traffic between other
                       hosts on the same network segment)
   -b                  don't display a bar graph of traffic
   -B                  Display bandwidth in bytes
   -i interface        listen on named interface
   -f filter code      use filter code to select packets to count
                       (default: none, but only IP packets are counted)
   -F net/mask         show traffic flows in/out of network
   -P                  show ports as well as hosts
   -m limit            sets the upper limit for the bandwidth scale
   -c config file      specifies an alternative configuration file

iftop, version 0.17
copyright (c) 2002 Paul Warren <pdw @ex-parrot.com> and contributors
</pdw></pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: cpg		</title>
		<link>https://www.brandonchecketts.com/archives/compression-for-mysql-replication/comment-page-1#comment-1376</link>

		<dc:creator><![CDATA[cpg]]></dc:creator>
		<pubDate>Wed, 21 Oct 2009 09:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonchecketts.com/?p=206#comment-1376</guid>

					<description><![CDATA[Hmmm, what option is that, Brandon?

I cannot seem to find it in the manual. Well, no reference to compression that I could find!]]></description>
			<content:encoded><![CDATA[<p>Hmmm, what option is that, Brandon?</p>
<p>I cannot seem to find it in the manual. Well, no reference to compression that I could find!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brandon		</title>
		<link>https://www.brandonchecketts.com/archives/compression-for-mysql-replication/comment-page-1#comment-1138</link>

		<dc:creator><![CDATA[Brandon]]></dc:creator>
		<pubDate>Sat, 20 Dec 2008 16:49:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonchecketts.com/?p=206#comment-1138</guid>

					<description><![CDATA[Don,

I&#039;m not sure what monitoring tools you have available, or what  your network people are reporting on.  I&#039;ve found &lt;a href-&quot;https://ex-parrot.com/~pdw/iftop/&quot; rel=&quot;nofollow&quot;&gt;iftop&lt;/a&gt; very useful because you can run it directly on the server.  I just noticed that there is an option available to monitory per-port as well.   With that, you could confirm the actual bandwidth that the mysql traffic is consuming.

As for SSH compression, I just a enabled in in ~/.ssh/config like this:

&lt;pre&gt;
Host remote.domain.com
    Compression yes
    CompressionLevel 9
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>Don,</p>
<p>I&#8217;m not sure what monitoring tools you have available, or what  your network people are reporting on.  I&#8217;ve found <a href-"https://ex-parrot.com/~pdw/iftop/" rel="nofollow">iftop</a> very useful because you can run it directly on the server.  I just noticed that there is an option available to monitory per-port as well.   With that, you could confirm the actual bandwidth that the mysql traffic is consuming.</p>
<p>As for SSH compression, I just a enabled in in ~/.ssh/config like this:</p>
<pre>
Host remote.domain.com
    Compression yes
    CompressionLevel 9
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Don Y.		</title>
		<link>https://www.brandonchecketts.com/archives/compression-for-mysql-replication/comment-page-1#comment-1134</link>

		<dc:creator><![CDATA[Don Y.]]></dc:creator>
		<pubDate>Thu, 18 Dec 2008 15:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonchecketts.com/?p=206#comment-1134</guid>

					<description><![CDATA[Hi Brandon,

Would you mind that I ask you a simple question? I have enabled replication compression in my application both in master and slave as  slave_compressed_protocol &#124; ON
But I ask my network people and it seems we haven&#039;t got the noticable bandwidth gain? So Could you give us a clue? By the way, how could we compressed by SSH?
Many thanks,

Don]]></description>
			<content:encoded><![CDATA[<p>Hi Brandon,</p>
<p>Would you mind that I ask you a simple question? I have enabled replication compression in my application both in master and slave as  slave_compressed_protocol | ON<br />
But I ask my network people and it seems we haven&#8217;t got the noticable bandwidth gain? So Could you give us a clue? By the way, how could we compressed by SSH?<br />
Many thanks,</p>
<p>Don</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
