<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Yves Trudeau's Weblog</title>
	<atom:link href="http://ytrudeau.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ytrudeau.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 21 Nov 2007 11:15:19 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ytrudeau.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bf592d89e449c08f6f6e74a2c6f458ed?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Yves Trudeau's Weblog</title>
		<link>http://ytrudeau.wordpress.com</link>
	</image>
			<item>
		<title>Generating graphs from vmstat output</title>
		<link>http://ytrudeau.wordpress.com/2007/11/20/generating-graphs-from-vmstat-output/</link>
		<comments>http://ytrudeau.wordpress.com/2007/11/20/generating-graphs-from-vmstat-output/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 17:06:51 +0000</pubDate>
		<dc:creator>ytrudeau</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tuning]]></category>

		<guid isPermaLink="false">http://ytrudeau.wordpress.com/2007/11/20/generating-graphs-from-vmstat-output/</guid>
		<description><![CDATA[ vmstat is a very useful tool, especially when you are doing performance tuning of an application like MySQL.  The only problem with the output from vmstat is that it is rather non-visual.  A simple solution is to import the output in a spreadsheet like Openoffice Calc and create a graph,  but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ytrudeau.wordpress.com&blog=1504852&post=6&subd=ytrudeau&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> vmstat is a very useful tool, especially when you are doing performance tuning of an application like MySQL.  The only problem with the output from vmstat is that it is rather non-visual.  A simple solution is to import the output in a spreadsheet like Openoffice Calc and create a graph,  but it is long and painful.  Creating many such graphs is not fun at all.</p>
<p>Fortunately, in the Linux world, there are tools to generate graph nearly automatically.  Here is my own set of tools to creates graphs from vmstat output.  You need the gnuplot program and awk, which is on all Linux version.</p>
<p>The output of vmstat looks like this:<br />
<code><br />
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------<br />
r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st<br />
1  0    164  48604  45136 4871464    0    0    94   111    4    7  1  0 98  0  0<br />
0  2    164  48476  45188 4871552    0    0    35    15 1062  133  1  0 99  0  0<br />
0  6    164  44960  46540 4870400    0    0  3159   497 4149 5618  2  1 78 19  0<br />
2  1    164  64420  46116 4843140    0    0  8651  1794 4815 7719 10  3 73 15  0<br />
2 11    164  45180  46452 4855156    0    0  2325  3827 5846 10320 13  3 72 11  0<br />
1  3    164  45528  45652 4852376    0    0  8652  1824 4857 6831  7  5 67 22  0<br />
0  3    164  59024  45764 4834444    0    0  2394  4118 4768 6544 12  3 70 14  0<br />
...<br />
</code></p>
<p>We first need a script to get rid of the titles and to create an X axis number.  I wrote a small script, filtervmstat, which look like this:</p>
<pre> $ more ~/bin/filtervmstat

cat $1 | grep -v memory | grep -v buff | perl -p -e "s|  | |g" -| perl -p -e "s|  | |g" - | perl -p -e "s|  | |g" - | awk 'BEGIN {x=1}; {print x++ " " $1 " " $2 " " $3 " " $4 " " $5 " " $6 " " $7 " " $8 " " $9 " " $10 " " $11 " " $12 " " $13 " " $14 " " $15 " " $16;}'</pre>
<p>I am not a awk expert, maybe the column enumeration could be simplified.  This will give use the following output:<br />
<code><br />
1 1 0 164 48604 45136 4871464 0 0 94 111 4 7 1 0 98 0<br />
2 0 2 164 48476 45188 4871552 0 0 35 15 1062 133 1 0 99 0<br />
3 0 6 164 44960 46540 4870400 0 0 3159 497 4149 5618 2 1 78 19<br />
4 2 1 164 64420 46116 4843140 0 0 8651 1794 4815 7719 10 3 73 15<br />
5 2 11 164 45180 46452 4855156 0 0 2325 3827 5846 10320 13 3 72 11<br />
6 1 3 164 45528 45652 4852376 0 0 8652 1824 4857 6831 7 5 67 22<br />
7 0 3 164 59024 45764 4834444 0 0 2394 4118 4768 6544 12 3 70 14<br />
8 1 12 164 46284 45792 4842704 0 0 5980 2804 6378 9984 10 6 68 16<br />
9 1 3 164 58760 45568 4823504 0 0 5203 4712 6470 9687 15 4 62 19<br />
</code></p>
<p>Next, we need a gnuplot template in order to plot column 14, 15 and 16 which are respectively, user, system and idle cpu.  My cpugraph.plt template is here:<br />
<code><br />
#!/usr/bin/gnuplot -persist<br />
#<br />
#<br />
#       G N U P L O T<br />
#       Version 4.0 patchlevel 0<br />
#       last modified Thu Apr 15 14:44:22 CEST 2004<br />
#       System: Linux 2.6.22<br />
#<br />
#       Copyright (C) 1986 - 1993, 1998, 2004<br />
#       Thomas Williams, Colin Kelley and many others<br />
#<br />
#       This is gnuplot version 4.0.  Please refer to the documentation<br />
#       for command syntax changes.  The old syntax will be accepted<br />
#       throughout the 4.0 series, but all save files use the new syntax.<br />
#<br />
#       Type `help` to access the on-line reference manual.<br />
#       The gnuplot FAQ is available from<br />
#               http://www.gnuplot.info/faq/<br />
#<br />
#       Send comments and requests for help to<br />
#<br />
#       Send bugs, suggestions and mods to<br />
#<br />
#<br />
# set terminal x11<br />
# set output<br />
unset clip points<br />
set clip one<br />
unset clip two<br />
set bar 1.000000<br />
set border 31 lt -1 lw 1.000<br />
set xdata<br />
set ydata<br />
set zdata<br />
set x2data<br />
set y2data<br />
set timefmt x "%d/%m/%y,%H:%M"<br />
set timefmt y "%d/%m/%y,%H:%M"<br />
set timefmt z "%d/%m/%y,%H:%M"<br />
set timefmt x2 "%d/%m/%y,%H:%M"<br />
set timefmt y2 "%d/%m/%y,%H:%M"<br />
set timefmt cb "%d/%m/%y,%H:%M"<br />
set boxwidth<br />
set style fill empty border<br />
set dummy x,y<br />
set format x "% g"<br />
set format y "% g"<br />
set format x2 "% g"<br />
set format y2 "% g"<br />
set format z "% g"<br />
set format cb "% g"<br />
set angles radians<br />
unset grid<br />
set key title ""<br />
set key right top Right noreverse enhanced box linetype -2 linewidth 1.000 samplen 4 spacing 1 width 0 height 0 autotitles<br />
unset label<br />
unset arrow<br />
unset style line<br />
unset style arrow<br />
unset logscale<br />
set offsets 0, 0, 0, 0<br />
set pointsize 1<br />
set encoding default<br />
unset polar<br />
unset parametric<br />
unset decimalsign<br />
set view 60, 30, 1, 1<br />
set samples 100, 100<br />
set isosamples 10, 10<br />
set surface<br />
unset contour<br />
set clabel '%8.3g'<br />
set mapping cartesian<br />
set datafile separator whitespace<br />
unset hidden3d<br />
set cntrparam order 4<br />
set cntrparam linear<br />
set cntrparam levels auto 5<br />
set cntrparam points 5<br />
set size ratio 0 1,1<br />
set origin 0,0<br />
set style data points<br />
set style function lines<br />
set xzeroaxis lt -2 lw 1.000<br />
set yzeroaxis lt -2 lw 1.000<br />
set x2zeroaxis lt -2 lw 1.000<br />
set y2zeroaxis lt -2 lw 1.000<br />
set tics in<br />
set ticslevel 0.5<br />
set ticscale 1 0.5<br />
set mxtics default<br />
set mytics default<br />
set mztics default<br />
set mx2tics default<br />
set my2tics default<br />
set mcbtics default<br />
set xtics border mirror norotate autofreq<br />
set ytics border mirror norotate autofreq<br />
set ztics border nomirror norotate autofreq<br />
set nox2tics<br />
set noy2tics<br />
set cbtics border mirror norotate autofreq<br />
set title "" 0.000000,0.000000  font ""<br />
set timestamp "" bottom norotate 0.000000,0.000000  ""<br />
set rrange [ * : * ] noreverse nowriteback  # (currently [0.00000:10.0000] )<br />
set trange [ * : * ] noreverse nowriteback  # (currently [-5.00000:5.00000] )<br />
set urange [ * : * ] noreverse nowriteback  # (currently [-5.00000:5.00000] )<br />
set vrange [ * : * ] noreverse nowriteback  # (currently [-5.00000:5.00000] )<br />
set xlabel "Sample" 0.000000,0.000000  font ""<br />
set x2label "" 0.000000,0.000000  font ""<br />
set xrange [ * : * ] noreverse nowriteback  # (currently [-10.0000:10.0000] )<br />
set x2range [ * : * ] noreverse nowriteback  # (currently [-10.0000:10.0000] )<br />
set ylabel "CPU" 0.000000,0.000000  font ""<br />
set y2label "" 0.000000,0.000000  font ""<br />
set yrange [ * : * ] noreverse nowriteback  # (currently [-10.0000:10.0000] )<br />
set y2range [ * : * ] noreverse nowriteback  # (currently [-10.0000:10.0000] )<br />
set zlabel "" 0.000000,0.000000  font ""<br />
set zrange [ * : * ] noreverse nowriteback  # (currently [-10.0000:10.0000] )<br />
set cblabel "" 0.000000,0.000000  font ""<br />
set cbrange [ * : * ] noreverse nowriteback  # (currently [-10.0000:10.0000] )<br />
set zero 1e-08<br />
set lmargin -1<br />
set bmargin -1<br />
set rmargin -1<br />
set tmargin -1<br />
set locale "C"<br />
set pm3d scansautomatic flush begin noftriangles nohidden3d implicit corners2color mean<br />
unset pm3d<br />
set palette positive nops_allcF maxcolors 0 gamma 1.5 color model RGB<br />
set palette rgbformulae 7, 5, 15<br />
set colorbox default<br />
set colorbox vertical origin 0.9,0.2 size 0.1,0.63 bdefault<br />
set loadpath<br />
set fontpath<br />
set fit noerrorvariables<br />
plot "/tmp/cpudata.dat" using 1:16 with lines title "Idle", "/tmp/cpudata.dat" using 1:15 with lines title "System", "/tmp/cpudata.dat" using 1:14 with lines<br />
title "User"<br />
#    EOF<br />
</code></p>
<p>It is a very simple template that produce the graph on screen in a X windows with the data coming from /tmp/cpudata.dat.  I wrote another small script just to ease the process:</p>
<p><code><br />
$ more ~/bin/cpuvmstat<br />
HOME=/home/yves<br />
cat $1 | filtervmstat &gt; /tmp/cpudata.dat<br />
if [ "a$2" == "apng" ] ; then<br />
$HOME/bin/cpugraphpng.plt<br />
exit<br />
else<br />
$HOME/bin/cpugraph.plt<br />
fi<br />
rm -f /tmp/cpudata.dat<br />
</code></p>
<p>The cpugraphpng.plt is the same template as before except the output has been change to a png file.  So, calling this script with a vmstat output as parameter give the following result on you screen:</p>
<p><img src="http://ytrudeau.files.wordpress.com/2007/11/cpugraph.png" alt="CPU graph from vmstat output with Gnuplot" align="left" /></p>
<p>The graph is created is less then one second,  a very desirable feature for an impatient guy like me&#8230;</p>
<p>If you want to save the graph as a png file, create another template as cpugraphpng.plt (copy cpugraph.plt) and change the first two lines to this:</p>
<pre>
set terminal png
set output "/tmp/cpugraph.png"</pre>
<p>Yves</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ytrudeau.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ytrudeau.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ytrudeau.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ytrudeau.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ytrudeau.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ytrudeau.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ytrudeau.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ytrudeau.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ytrudeau.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ytrudeau.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ytrudeau.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ytrudeau.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ytrudeau.wordpress.com&blog=1504852&post=6&subd=ytrudeau&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ytrudeau.wordpress.com/2007/11/20/generating-graphs-from-vmstat-output/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68250901e7d1f89b8c73e37e379190b9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">ytrudeau</media:title>
		</media:content>

		<media:content url="http://ytrudeau.files.wordpress.com/2007/11/cpugraph.png" medium="image">
			<media:title type="html">CPU graph from vmstat output with Gnuplot</media:title>
		</media:content>
	</item>
		<item>
		<title>Testing the performance of a filesystem</title>
		<link>http://ytrudeau.wordpress.com/2007/09/07/testing-the-performance-of-a-filesystem/</link>
		<comments>http://ytrudeau.wordpress.com/2007/09/07/testing-the-performance-of-a-filesystem/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 01:32:36 +0000</pubDate>
		<dc:creator>ytrudeau</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://ytrudeau.wordpress.com/2007/09/07/testing-the-performance-of-a-filesystem/</guid>
		<description><![CDATA[Today, I am in Boston for training, I am shadowing Ronald Bradford, another MySQL consultant.  It is fun and I learn a lot although it is not always easy to follow someone else mind.   But we needed to evaluate the performance and the stability of a SAN.   Do do so, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ytrudeau.wordpress.com&blog=1504852&post=5&subd=ytrudeau&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today, I am in Boston for training, I am shadowing Ronald Bradford, another MySQL consultant.  It is fun and I learn a lot although it is not always easy to follow someone else mind.   But we needed to evaluate the performance and the stability of a SAN.   Do do so, we have used the bonnie++ tool.   The server has 32 GB of memory and the filesystem was mounted under /data3.  The command line used was the following:</p>
<p>mkdir /data3/testbonnie; nohup bonnie++ -d /data3/testbonnie -s 65000 -n 10 -r 32000 -x 5 -u root -g root &amp;</p>
<p>After more six hours&#8230; the results were the following:</p>
<p>cat nohup.out  | grep proddb | bon_csv2txt</p>
<p>Version  @version@      &#8212;&#8212;Sequential Output&#8212;&#8212; &#8211;Sequential Input- &#8211;Random-<br />
-Per Chr- &#8211;Block&#8211; -Rewrite- -Per Chr- &#8211;Block&#8211; &#8211;Seeks&#8211;<br />
Machine        Size K/sec %CP K/sec %CP K/sec %CP K/sec %CP K/sec %CP  /sec %CP<br />
proddb06     65000M 71639  84 67884  13 54084   7 60194  60 126326   7 572.7   0<br />
proddb06     65000M 79194  92 73790  14 53934   7 60226  60 125639   7 566.9   0<br />
proddb06     65000M 78795  94 65855  12 53893   7 60292  60 126335   7 576.1   1<br />
proddb06     65000M 80131  94 66034  12 53338   7 60308  60 125753   7 587.5   1<br />
proddb06     65000M 79590  95 67575  13 54467   7 60745  60 126381   7 589.7   0<br />
&#8212;&#8212;Sequential Create&#8212;&#8212; &#8212;&#8212;&#8211;Random Create&#8212;&#8212;&#8211;<br />
-Create&#8211; &#8211;Read&#8212; -Delete&#8211; -Create&#8211; &#8211;Read&#8212; -Delete&#8211;<br />
files:max:min        /sec %CP  /sec %CP  /sec %CP  /sec %CP  /sec %CP  /sec %CP<br />
proddb06         10  9133  99 +++++ +++ +++++ +++  9375  99 +++++ +++ +++++ +++<br />
proddb06         10  9085  99 +++++ +++ +++++ +++  9330 100 +++++ +++ +++++ +++<br />
proddb06         10  9002  99 +++++ +++ +++++ +++  9386  99 +++++ +++ +++++ +++<br />
proddb06         10  9165 100 +++++ +++ +++++ +++  9436  99 +++++ +++ +++++ +++<br />
proddb06         10  9140  99 +++++ +++ +++++ +++  9398  99 +++++ +++ +++++ +++</p>
<p>Which is typical of a medium range San using Raid5.  It is worth notice that the first time we ran bonnie++, we actually frose the server.  Bonnie++ stressed the disk I/O to a point that showed a problem with the fiber channel adapter driver.   Good to have catch this problem before going into production.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ytrudeau.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ytrudeau.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ytrudeau.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ytrudeau.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ytrudeau.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ytrudeau.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ytrudeau.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ytrudeau.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ytrudeau.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ytrudeau.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ytrudeau.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ytrudeau.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ytrudeau.wordpress.com&blog=1504852&post=5&subd=ytrudeau&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ytrudeau.wordpress.com/2007/09/07/testing-the-performance-of-a-filesystem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68250901e7d1f89b8c73e37e379190b9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">ytrudeau</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://ytrudeau.wordpress.com/2007/08/17/4/</link>
		<comments>http://ytrudeau.wordpress.com/2007/08/17/4/#comments</comments>
		<pubDate>Fri, 17 Aug 2007 00:02:11 +0000</pubDate>
		<dc:creator>ytrudeau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ytrudeau.wordpress.com/2007/08/17/4/</guid>
		<description><![CDATA[Hi,
for the whole week I have been in training in Cupertino.  Basically, what is covered is HA/Cluster/Performance tuning.  Nothing very special this week,  I just continue to discover MySQL from the inside and I&#8217;m pleased with what I see.  Tonight, we have a dinner with our VP, Ulf Sandberg.  Since such a large proportion of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ytrudeau.wordpress.com&blog=1504852&post=4&subd=ytrudeau&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi,</p>
<p>for the whole week I have been in training in Cupertino.  Basically, what is covered is HA/Cluster/Performance tuning.  Nothing very special this week,  I just continue to discover MySQL from the inside and I&#8217;m pleased with what I see.  Tonight, we have a dinner with our VP, Ulf Sandberg.  Since such a large proportion of MySQL employees work remotely,  such events are important make ties between people.</p>
<p>I started looking at the MySQL proxy and although some may argue that features it allows should be in the server, it is so easy to do interesting things.   Of course, I will have to learn LUA and&#8230; of course Jan had chosen to use LUA 5.1 and my brand new Ubuntu Feisty Laptop has LUA 5.0.  Anyway, I don&#8217;t really need to compile it right now, there is a binary version available.</p>
<p>I almost done with the configuration of my Lenovo T61, yesterday I got my bluetooth working.  What I actually had to do was &#8220;modprobe hci_usd&#8221;, &#8220;modprobe ibm_acpi&#8221; and then press &#8220;Fn-F5&#8243;.  With this my bluetooth starts working but&#8230; I lost my wifi and I had to reboot in order to get it back.  Not very fun but now, at least, I can transfer my picture from my bluetooth to my laptop.  I need to learn more about bluetooth.  That&#8217;s all for now.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ytrudeau.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ytrudeau.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ytrudeau.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ytrudeau.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ytrudeau.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ytrudeau.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ytrudeau.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ytrudeau.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ytrudeau.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ytrudeau.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ytrudeau.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ytrudeau.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ytrudeau.wordpress.com&blog=1504852&post=4&subd=ytrudeau&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ytrudeau.wordpress.com/2007/08/17/4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68250901e7d1f89b8c73e37e379190b9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">ytrudeau</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://ytrudeau.wordpress.com/2007/08/13/3/</link>
		<comments>http://ytrudeau.wordpress.com/2007/08/13/3/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 04:29:37 +0000</pubDate>
		<dc:creator>ytrudeau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ytrudeau.wordpress.com/2007/08/13/3/</guid>
		<description><![CDATA[Hi everyone,
this is my first blog entry and my maiden language is french, so, it is not as easy as it should be. Also, I will never pretend being a good writer so, be warned. I joined MySQL earlier in July as a senior consultant and I have created this blog at the suggestion of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ytrudeau.wordpress.com&blog=1504852&post=3&subd=ytrudeau&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi everyone,<br />
this is my first blog entry and my maiden language is french, so, it is not as easy as it should be. Also, I will never pretend being a good writer so, be warned. I joined MySQL earlier in July as a senior consultant and I have created this blog at the suggestion of Ronald Bradford, a senior consultant on the same team as I am.  I am just back from vacation and I currently flying to Cupertino CA for a performance tuning and high availability course.  I am rather new to MySQL so I hope to learn a lot, especially from the performance tuning part. What I really like from MySQL is the scalability it allows, I don&#8217;t know any other generally available database that allows a similar scaling.</p>
<p>I spend my last week of vacation doing camping with my wife and three daughters at the Oka national park camping near Montreal.  It&#8217;s a very nice camping in a mature forest maid of large pines and oak trees. I have to say, there are some mosquitoes but not too much, I&#8217;m still alive.  The fun part with camping is the low level of stress and slow life rhythm but you have to accept a relatively low comfort and a smelly camp fire smoke perfume.  I was wondering why camping was so popular. Of course there are what I just mention, the low stress life and the contact with the nature.  But I believe there is something more when I saw at night, at every lot in the camping, people burning wood in a camp fire.  Is it because, one million years ago, our ancestors where making fires to heat them and protect them against wild animal?  Maybe there are traces of this in our genes, there is something fascinating about a camp fire.  For the rest, sleeping outside on a rather&#8230; hard ground, maybe we just want to prove to ourselves that we are able to survive with limited resources.  Anyway, I&#8217;m a computer science specialist, not an anthropologist.<br />
That&#8217;s all for my first time.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ytrudeau.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ytrudeau.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ytrudeau.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ytrudeau.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ytrudeau.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ytrudeau.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ytrudeau.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ytrudeau.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ytrudeau.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ytrudeau.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ytrudeau.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ytrudeau.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ytrudeau.wordpress.com&blog=1504852&post=3&subd=ytrudeau&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ytrudeau.wordpress.com/2007/08/13/3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68250901e7d1f89b8c73e37e379190b9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">ytrudeau</media:title>
		</media:content>
	</item>
	</channel>
</rss>