<?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/"
	>

<channel>
	<title>PlanetMysql.ru - информация о СУБД MySQL</title>
	<atom:link href="http://planetmysql.ru/feed/" rel="self" type="application/rss+xml" />
	<link>http://planetmysql.ru</link>
	<description>Блог о самой популярной СУБД MySQL</description>
	<lastBuildDate>Sat, 04 Feb 2012 15:42:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>OurSQL Episode 77: Removing Evil Queries, part 1</title>
		<link>http://technocation.org/content/oursql-episode-77%3A-removing-evil-queries,-part-1?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=oursql-episode-77-removing-evil-queries-part-1</link>
		<comments>http://technocation.org/content/oursql-episode-77%3A-removing-evil-queries,-part-1#comments</comments>
		<pubDate>Sat, 04 Feb 2012 15:42:15 +0000</pubDate>
		<dc:creator>Technocation</dc:creator>
				<category><![CDATA[Podcasts]]></category>
		<category><![CDATA[query optimization]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=110b90bd12e330de8327b6820aa437c1</guid>
		<description><![CDATA[Registration for Percona Live: MySQL Conference and Expo is open!  The conference is from Tuesday, April 10th through Thursday, April 12th.  Early bird pricing ends March 12th, 2012.
Use code PL-pod and save 10% off the early bird prices!.
The 1st Latin American Conference about MySQL, NoSQL and Cloud technologies  will be held in Buenos Aires in June. It is called the MariaDB NoSQL &#38; Cloud Latin American Conference and we'll bring you more information as it becomes available.
read more]]></description>
			<content:encoded><![CDATA[<p>Registration for Percona Live: MySQL Conference and Expo is open!  The conference is from Tuesday, April 10th through Thursday, April 12th.  Early bird pricing ends March 12th, 2012.<br />
<a href="http://perconalive-mysql-conference-expo-2012.eventbrite.com/event/2596588466?discount=PL-pod">Use code PL-pod and save 10% off the early bird prices!</a>.</p>
<p>The 1st Latin American Conference about MySQL, NoSQL and Cloud technologies  will be held in Buenos Aires in June. It is called the <a href="http://mariadbnosqlcloud.com/?conference=mariadb-nosql-cloud-latin-american-conference">MariaDB NoSQL &amp; Cloud Latin American Conference</a> and we'll bring you more information as it becomes available.</p>
<p><a href="http://technocation.org/content/oursql-episode-77%3A-removing-evil-queries,-part-1">read more</a></p><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31892&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31892&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/02/04/oursql-episode-77-removing-evil-queries-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stripping Comments so Query Cache Works in MariaDB and XtraDB</title>
		<link>http://www.chriscalender.com/?p=813&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=stripping-comments-so-query-cache-works-in-mariadb-and-xtradb</link>
		<comments>http://www.chriscalender.com/?p=813#comments</comments>
		<pubDate>Fri, 03 Feb 2012 22:16:54 +0000</pubDate>
		<dc:creator>Chris Calender</dc:creator>
				<category><![CDATA[mariadb comments]]></category>
		<category><![CDATA[mariadb query cache]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql comments]]></category>
		<category><![CDATA[MySQL query cache]]></category>
		<category><![CDATA[query cache comments]]></category>
		<category><![CDATA[query cache skip comments]]></category>
		<category><![CDATA[query cache strip comments]]></category>
		<category><![CDATA[query-cache]]></category>
		<category><![CDATA[query_cache_strip_comments]]></category>
		<category><![CDATA[skip comments]]></category>
		<category><![CDATA[strip comments]]></category>
		<category><![CDATA[xtradb comments]]></category>
		<category><![CDATA[xtradb query cache]]></category>

		<guid isPermaLink="false">http://www.chriscalender.com/?p=813</guid>
		<description><![CDATA[I recently noticed both MariaDB and XtraDB (not MySQL yet) have a (newer) variable query_cache_strip_comments.
This variable is great for those who want to append comments to various queries, but still want the query cache to be able to serve such queries.  Unfortunately, with MySQL, this is not currently possible.
In the past, I wrote a post on using MySQL Proxy which described a technique of monitoring queries through the proxy by appending IP addresses to the queries so one could track where they originated from.  However, one pitfall to that was the MySQL query cache *does not* ignore the comment and treats them all as different queries (see the user comments for further discussion).  (I did subsequently enhance that functionality implementing the SHOW PROXY PROCESSLIST command (often used in the Proxy Admin module), in large part because of this limitation.)
To enable it (in MariaDB 5.3+ and XtraDB), just add query_cache_strip_comments under the [mysqld] section in your my.cnf file and restart mysqld.
Alternatively, you can also set it dynamically:
mysql&#62; set @@global.query_cache_strip_comments=1;
Query OK, 0 rows affected (0.04 sec)

mysql&#62; show global variables like 'query_cache_strip_comments';
+----------------------------+-------+
&#124; Variable_name              &#124; Value &#124;
+----------------------------+-------+
&#124; query_cache_strip_comments &#124; ON    &#124;
+----------------------------+-------+

mysql&#62; select version();
+---------------+
&#124; version()     &#124;
+---------------+
&#124; 5.3.3-MariaDB &#124;
+---------------+
Fwiw, from examining the source code, both implementations seemed to differ, but the end result is the same, and it&#8217;s a welcome addition, if you ask me.]]></description>
			<content:encoded><![CDATA[<p>I recently noticed both MariaDB and XtraDB (not MySQL yet) have a (newer) variable <i>query_cache_strip_comments</i>.</p>
<p>This variable is great for those who want to append comments to various queries, but still want the query cache to be able to serve such queries.  Unfortunately, with MySQL, this is not currently possible.</p>
<p>In the past, I wrote a <a href="http://www.chriscalender.com/?p=6">post on using MySQL Proxy</a> which described a technique of monitoring queries through the proxy by appending IP addresses to the queries so one could track where they originated from.  However, one pitfall to that was the MySQL query cache *does not* ignore the comment and treats them all as different queries (see the <a href="http://www.chriscalender.com/?p=6#comments">user comments</a> for further discussion).  (I did subsequently enhance that functionality implementing the <a href="http://www.chriscalender.com/?p=41">SHOW PROXY PROCESSLIST</a> command (often used in the <a href="http://dev.mysql.com/doc/refman/5.5/en/mysql-proxy-using-admin.html">Proxy Admin module</a>), in large part because of this limitation.)</p>
<p>To enable it (in MariaDB 5.3+ and XtraDB), just add <i>query_cache_strip_comments</i> under the <i>[mysqld]</i> section in your my.cnf file and restart mysqld.</p>
<p>Alternatively, you can also set it dynamically:</p>
<pre>mysql> set @@global.query_cache_strip_comments=1;
Query OK, 0 rows affected (0.04 sec)

mysql> show global variables like 'query_cache_strip_comments';
+----------------------------+-------+
| Variable_name              | Value |
+----------------------------+-------+
| query_cache_strip_comments | ON    |
+----------------------------+-------+

mysql> select version();
+---------------+
| version()     |
+---------------+
| 5.3.3-MariaDB |
+---------------+</pre>
<p>Fwiw, from examining the source code, both implementations seemed to differ, but the end result is the same, and it&#8217;s a welcome addition, if you ask me. <img src="http://www.chriscalender.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31890&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31890&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/02/04/stripping-comments-so-query-cache-works-in-mariadb-and-xtradb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forums.MySQL.Com as a gym for mental exercise</title>
		<link>http://opensourcedba.wordpress.com/2012/02/03/forums-mysql-com-as-a-gym-for-mental-exercise/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=forums-mysql-com-as-a-gym-for-mental-exercise</link>
		<comments>http://opensourcedba.wordpress.com/2012/02/03/forums-mysql-com-as-a-gym-for-mental-exercise/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 21:21:40 +0000</pubDate>
		<dc:creator>Dave Stokes</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://opensourcedba.wordpress.com/?p=566</guid>
		<description><![CDATA[The MySQL Forums seem to be have been around forever.  There are groups for announcements, performance, InnoDB, Cluster, Replication, Certification, Events, questions in German, partitioning, and just under a hundred MySQL related subjects in total.  Most folks in the MySQLverse seem to regularly lurk in one or more of the forums.  There area great source of information and sometimes humor.  But are you using the forums to help build your MySQL mental muscle? Ask yourself how would you solve the problem or how would you guide a junior DBA or developer to fix an issue posted in a forum.
Try reading the groups that are not in your regular reading list. Is there a question in there you can not answer even after a peek at the documentation?  
After running MySQL for a few years, it is easy to skip over the problems of novices found in the Newbie section. But like the old story of the Emperor&#8217;s New Clothes, a new set of eyes can point out things we do not notice.  Recently someone in the Newbie group wanted to set up a round robin for inserts over eight disks in an attempt to get 8x performance gain.  Hmmm, if that did scale would it scale linearly(1) or close to it?  Too bad I do not have the hardware or spare cycles to give it a try.
Or question on how to remove a &#8216;width=xxx&#8217; pattern from a text field.  Hmm, the old GIGO rules would dictate that some sort of ETL tool or script remove the unwanted chaff before it goes into the database.  Do you use regular expressions in a PHP, Perl, or Java hack? Could a column oriented editor let you WYSIWYG the data?  Maybe a trigger on insert that culls the unwanted width data?  Hey, does your data have anything hidden in a text filed that should not be there and how best to get rid of it?
So read through a few forums and use them to exercise you mind.  And if you see something in a question that you can answer, please do so.

 Nothing scales linearly that you need to scale linearly. At least not on your budget and or schedule.]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://forums.mysql.com" >MySQL Forums</a> seem to be have been around forever.  There are groups for announcements, performance, InnoDB, Cluster, Replication, Certification, Events, questions in German, partitioning, and just under a hundred MySQL related subjects in total.  Most folks in the MySQLverse seem to regularly lurk in one or more of the forums.  There area great source of information and sometimes humor.  But are you using the forums to help build your MySQL mental muscle? Ask yourself how would you solve the problem or how would you guide a junior DBA or developer to fix an issue posted in a forum.</p>
<p>Try reading the groups that are not in your regular reading list. Is there a question in there you can not answer even after a peek at the documentation?  </p>
<p>After running MySQL for a few years, it is easy to skip over the problems of novices found in the <a href="http://forums.mysql.com/list.php?10" >Newbie</a> section. But like the old story of the Emperor&#8217;s New Clothes, a new set of eyes can point out things we do not notice.  Recently someone in the Newbie group wanted to set up a <a href="http://forums.mysql.com/read.php?10,513522,513522#msg-513522" >round robin for inserts</a> over eight disks in an attempt to get 8x performance gain.  Hmmm, if that did scale would it scale linearly(1) or close to it?  Too bad I do not have the hardware or spare cycles to give it a try.</p>
<p>Or question on how to remove a <a href="http://forums.mysql.com/read.php?10,513208" >&#8216;width=xxx&#8217; pattern</a> from a text field.  Hmm, the old GIGO rules would dictate that some sort of ETL tool or script remove the unwanted chaff before it goes <em>into</em> the database.  Do you use regular expressions in a PHP, Perl, or Java hack? Could a column oriented editor let you WYSIWYG the data?  Maybe a trigger on insert that culls the unwanted width data?  Hey, does your data have anything hidden in a text filed that should not be there and how best to get rid of it?</p>
<p>So read through a few forums and use them to exercise you mind.  And if you see something in a question that you can answer, please do so.</p>
<ol>
<li> Nothing scales linearly that you <em>need</em> to scale linearly. At least not on <em>your</em> budget and or schedule. </li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/opensourcedba.wordpress.com/566/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/opensourcedba.wordpress.com/566/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/opensourcedba.wordpress.com/566/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/opensourcedba.wordpress.com/566/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/opensourcedba.wordpress.com/566/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/opensourcedba.wordpress.com/566/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/opensourcedba.wordpress.com/566/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/opensourcedba.wordpress.com/566/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/opensourcedba.wordpress.com/566/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/opensourcedba.wordpress.com/566/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/opensourcedba.wordpress.com/566/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/opensourcedba.wordpress.com/566/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/opensourcedba.wordpress.com/566/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/opensourcedba.wordpress.com/566/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=opensourcedba.wordpress.com&amp;blog=15386988&amp;post=566&amp;subd=opensourcedba&amp;ref=&amp;feed=1" width="1" height="1" /><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31889&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31889&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/02/04/forums-mysql-com-as-a-gym-for-mental-exercise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liveblogging:  Performance is Overrated, by Mark Callaghan</title>
		<link>http://www.sheeri.com/content/liveblogging-performance-overrated-mark-ca?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=liveblogging-performance-is-overrated-by-mark-callaghan</link>
		<comments>http://www.sheeri.com/content/liveblogging-performance-overrated-mark-ca#comments</comments>
		<pubDate>Fri, 03 Feb 2012 18:42:48 +0000</pubDate>
		<dc:creator>Sheeri K. Cabral</dc:creator>
		
		<guid isPermaLink="false">http://planetmysql.ru/?guid=8500b7f7ebcc7d083fc5436484adae67</guid>
		<description><![CDATA[Mark Callaghan speaks at the New England Database Summit about how data manageability is more important than performance.
Peak performance is thrown out, 95%-98% is important.
Variance shouldn't be large.
Data manageability is rate of interrupts per server for the operations team. Rate of server growth much bigger than rate of new hires for the systems teams.  A lot of the db team is from University of Wisconsin-Madison!
Why MySQL? Because it was there when he came.  Mark and ops/engineering peers made it scale 10x. He likes MySQL for OLTP, InnoDB is "An amazing piece of software."
They can get 500,000 qps using a cached workload, which is on par with memcached.
What Facebook really does is OLTP for the social graph.  The workload is secondary indexes, index-only queries, small joins but most queries use one table, multi-row transactions, majority of workload does not need SQL/optimizer, they do a physical and logical backup.
Most of this does not require SQL [blogger's note - they built Cassandra].  Why is the grass greener on the other side? automated replacement of failed nodes, less downtime on schema changes and/or fewer schema changes, multi-master, better compressions, etc.
Circa 2010, 13 million queries per second, 4 ms reads, 5 ms writes, 38GB peak network per second, etc.
Why so many servers?  Big data high queries per seconds. They add servers to add IOPS, so they're interested in compression and flash, so they can get more IOPS.  If they do remain on disk, write-optimized dbs are interesting too.  About 10 people on the db team, which is very small for a company that size.
How to scale MySQL? Fix stalls to make use of capacity, improve efficiency to use fewer queries/fewer data. Fixing stalls doesn't make MySQL faster, makes it less slow.  
[blogger's note - I stopped taking notes here because this is a rehash of the "How Facebook Does MySQL" talk that has been done over and over...]
[restarted when he started talking about data manageability again]
How Facebook got it's data manageable.
pylander- sheds load during a query pileup - kills dup queries, limits # of queries from some specific accounts -- take off on Highlander:  there can be only one.
dogpile - collects data during a query pileup - gets perf counters and list of running queries, generates HTML page with interesting results.  
Online schema change tool, for frequent schema changes, especially adding indexes.  This briefly locks the table, to setup triggers to track changes, copy data to a new table with the new desired schema, replay changes to the new table, then briefly lock the table again as you rename the new table as the target table.
Manageability is a work in progress -- working on:
- make InnoDB compression work for OLTP
- Faker - tool for prefetching for replication slaves - replay workload is: page read, do some modification, page write.  bottleneck might be disk reads, work is done by a single thread, transactions on master are concurrent.  Faker has multiple threads replay transactions in "fake-changes" mode, no undo, no rollback, read-only, fetches into the buffer pool the pages needed for that transaction.  Captures about 70% of disk reads for replication, they're working on fixes to get it up to 80-90%.
- auto replacement - replace failed and unhealthy MySQL servers.
- Auto resharding - sharding is easy, re-sharding is hard.
open issues in manageability:
diagnose why one host is slow, others are not.
....and some more.]]></description>
			<content:encoded><![CDATA[<p>Mark Callaghan speaks at the <a href="http://db.csail.mit.edu/nedbday12/program.html">New England Database Summit</a> about how data manageability is more important than performance.</p>
<p>Peak performance is thrown out, 95%-98% is important.</p>
<p>Variance shouldn't be large.</p>
<p>Data manageability is rate of interrupts per server for the operations team. Rate of server growth much bigger than rate of new hires for the systems teams.  A lot of the db team is from University of Wisconsin-Madison!</p>
<p>Why MySQL? Because it was there when he came.  Mark and ops/engineering peers made it scale 10x. He likes MySQL for OLTP, InnoDB is "An amazing piece of software."</p>
<p>They can get 500,000 qps using a cached workload, which is on par with memcached.</p>
<p>What Facebook really does is OLTP for the social graph.  The workload is secondary indexes, index-only queries, small joins but most queries use one table, multi-row transactions, majority of workload does not need SQL/optimizer, they do a physical and logical backup.</p>
<p>Most of this does not require SQL [blogger's note - they built Cassandra].  Why is the grass greener on the other side? automated replacement of failed nodes, less downtime on schema changes and/or fewer schema changes, multi-master, better compressions, etc.</p>
<p>Circa 2010, 13 million queries per second, 4 ms reads, 5 ms writes, 38GB peak network per second, etc.</p>
<p>Why so many servers?  Big data high queries per seconds. They add servers to add IOPS, so they're interested in compression and flash, so they can get more IOPS.  If they do remain on disk, write-optimized dbs are interesting too.  About 10 people on the db team, which is very small for a company that size.</p>
<p>How to scale MySQL? Fix stalls to make use of capacity, improve efficiency to use fewer queries/fewer data. Fixing stalls doesn't make MySQL faster, makes it less slow.  </p>
<p>[blogger's note - I stopped taking notes here because this is a rehash of the "How Facebook Does MySQL" talk that has been done over and over...]</p>
<p>[restarted when he started talking about data manageability again]</p>
<p>How Facebook got it's data manageable.</p>
<p>pylander- sheds load during a query pileup - kills dup queries, limits # of queries from some specific accounts -- take off on Highlander:  there can be only one.</p>
<p>dogpile - collects data during a query pileup - gets perf counters and list of running queries, generates HTML page with interesting results.  </p>
<p>Online schema change tool, for frequent schema changes, especially adding indexes.  This briefly locks the table, to setup triggers to track changes, copy data to a new table with the new desired schema, replay changes to the new table, then briefly lock the table again as you rename the new table as the target table.</p>
<p>Manageability is a work in progress -- working on:<br />
- make InnoDB compression work for OLTP<br />
- Faker - tool for prefetching for replication slaves - replay workload is: page read, do some modification, page write.  bottleneck might be disk reads, work is done by a single thread, transactions on master are concurrent.  Faker has multiple threads replay transactions in "fake-changes" mode, no undo, no rollback, read-only, fetches into the buffer pool the pages needed for that transaction.  Captures about 70% of disk reads for replication, they're working on fixes to get it up to 80-90%.<br />
- auto replacement - replace failed and unhealthy MySQL servers.<br />
- Auto resharding - sharding is easy, re-sharding is hard.</p>
<p>open issues in manageability:<br />
diagnose why one host is slow, others are not.<br />
....and some more.</p><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31888&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31888&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/02/03/liveblogging-performance-is-overrated-by-mark-callaghan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Help Set the MariaDB 5.6 Roadmap with SkySQL and Monty Program</title>
		<link>http://www.skysql.com/blogs/chriscalender/help-set-mariadb-56-roadmap-skysql-and-monty-program?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=help-set-the-mariadb-5-6-roadmap-with-skysql-and-monty-program</link>
		<comments>http://www.skysql.com/blogs/chriscalender/help-set-mariadb-56-roadmap-skysql-and-monty-program#comments</comments>
		<pubDate>Fri, 03 Feb 2012 17:45:48 +0000</pubDate>
		<dc:creator>SkySQL</dc:creator>
				<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[mariadb 5.6]]></category>
		<category><![CDATA[mariadb roadmap]]></category>
		<category><![CDATA[monty program]]></category>
		<category><![CDATA[SkySQL]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=bdfe6f507c35057d7fe8239d99454231</guid>
		<description><![CDATA[Part of every SkySQL subscription is paid to Monty Program to fund server development and improved functionality in MariaDB® (which is then sent upstream for inclusion in the MySQL® Server).
Thus, we'd like to know what you'd like to see in the upcoming releases of the server.
Please take a couple seconds (literally) and let your vote be heard:
http://www.skysql.com/content/new-server-functionality-have-your-say
We thank you and look forward to hearing your thoughts and ideas!]]></description>
			<content:encoded><![CDATA[<p> Part of every SkySQL subscription is paid to Monty Program to fund server development and improved functionality in MariaDB® (which is then sent upstream for inclusion in the MySQL® Server).</p>
<p>Thus, we'd like to know what you'd like to see in the upcoming releases of the server.</p>
<p>Please take a couple seconds (literally) and let your vote be heard:</p>
<p><a href="http://www.skysql.com/content/new-server-functionality-have-your-say">http://www.skysql.com/content/new-server-functionality-have-your-say</a></p>
<p>We thank you and look forward to hearing your thoughts and ideas! </p><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31887&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31887&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/02/03/help-set-the-mariadb-5-6-roadmap-with-skysql-and-monty-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Help Set the MariaDB 5.6 Roadmap with SkySQL and Monty Program</title>
		<link>http://www.skysql.com/blogs/chriscalender/help-set-mariadb-56-roadmap-skysql-and-monty-program?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=help-set-the-mariadb-5-6-roadmap-with-skysql-and-monty-program</link>
		<comments>http://www.skysql.com/blogs/chriscalender/help-set-mariadb-56-roadmap-skysql-and-monty-program#comments</comments>
		<pubDate>Fri, 03 Feb 2012 17:45:48 +0000</pubDate>
		<dc:creator>SkySQL</dc:creator>
				<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[mariadb 5.6]]></category>
		<category><![CDATA[mariadb roadmap]]></category>
		<category><![CDATA[monty program]]></category>
		<category><![CDATA[SkySQL]]></category>
		<category><![CDATA[skysql roadmap]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=bdfe6f507c35057d7fe8239d99454231</guid>
		<description><![CDATA[Part of every SkySQL subscription is paid to Monty Program to fund server development and improved functionality in MariaDB® (which is then sent upstream for inclusion in the MySQL® Server).
Thus, we'd like to know what you'd like to see in the upcoming releases of the server.
Please take a couple seconds (literally) and let your vote be heard:
http://www.skysql.com/content/new-server-functionality-have-your-say
We thank you and look forward to hearing your thoughts and ideas!]]></description>
			<content:encoded><![CDATA[<p> Part of every SkySQL subscription is paid to Monty Program to fund server development and improved functionality in MariaDB® (which is then sent upstream for inclusion in the MySQL® Server).</p>
<p>Thus, we'd like to know what you'd like to see in the upcoming releases of the server.</p>
<p>Please take a couple seconds (literally) and let your vote be heard:</p>
<p><a href="http://www.skysql.com/content/new-server-functionality-have-your-say">http://www.skysql.com/content/new-server-functionality-have-your-say</a></p>
<p>We thank you and look forward to hearing your thoughts and ideas! </p><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31887&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31887&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/02/03/help-set-the-mariadb-5-6-roadmap-with-skysql-and-monty-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RMOUG Training Days 2012</title>
		<link>http://sqlhjalp.blogspot.com/2012/02/rmoug-training-days-2012.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rmoug-training-days-2012</link>
		<comments>http://sqlhjalp.blogspot.com/2012/02/rmoug-training-days-2012.html#comments</comments>
		<pubDate>Fri, 03 Feb 2012 17:45:00 +0000</pubDate>
		<dc:creator>Keith Larson</dc:creator>
				<category><![CDATA[mysql RMOUG]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=3a25dc82ca31f46497310db40d1919b2</guid>
		<description><![CDATA[The Rocky Mountain Oracle User Group ( RMOUG ) Training days are almost here.&#160;&#160; This year they are going to have a MySQL Oracle ACE Director, Ronald Bradford talk on MySQL Security Essentials.&#160; I will also be having a MySQL Crash Course . I was going to talk about replication but after attending the IOUG User summit and the seeing the vast interest in MySQL from Oracle users, I decided to take a step back and do this talk 1st. I have had a similar talk at a RMOUG meetup hands on labs in the past, but it has been updated.Alex Gorbachev of Pythian also has a session, Monitoring MySQL with Oracle Cloud Control 12c. Look forward to seeing everyone and I think great things are on the horizon with&#160; RMOUG and MySQL.]]></description>
			<content:encoded><![CDATA[The Rocky Mountain Oracle User Group ( <a href="http://www.rmoug.org/">RMOUG</a> ) <a href="http://www.teamycc.com/RMOUG_2012_Conference/index.html">Training days</a> are almost here.&nbsp;&nbsp; This year they are going to have a MySQL Oracle ACE Director, <a href="http://apex.oracle.com/pls/otn/f?p=19297:4:3039779342908998::NO:4:P4_ID:1820">Ronald Bradford</a> talk on <a href="http://www.technicalconferencesolutions.com/pls/caat/caat_abstract_reports.display_presenter_abstract?conference_id=99&amp;presenter_id=443&amp;abstract_id=294993">MySQL Security Essentials.&nbsp; </a>I will also be having a <a href="http://www.technicalconferencesolutions.com/pls/caat/caat_abstract_reports.display_presenter_abstract?conference_id=99&amp;presenter_id=470&amp;abstract_id=301585">MySQL Crash Course </a>. I was going to talk about replication but after attending the IOUG User summit and the seeing the vast interest in MySQL from Oracle users, I decided to take a step back and do this talk 1st. I have had a similar talk at a RMOUG meetup hands on labs in the past, but it has been updated.<br /><br />Alex Gorbachev of Pythian also has a session, <a href="http://www.technicalconferencesolutions.com/pls/caat/caat_abstract_reports.display_presenter_abstract?conference_id=99&amp;presenter_id=86&amp;abstract_id=295470">Monitoring MySQL with Oracle Cloud Control 12c</a>. <br /><br />Look forward to seeing everyone and I think great things are on the horizon with&nbsp; RMOUG and MySQL.<div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3812360659149323517-4283927102006869754?l=sqlhjalp.blogspot.com" alt="" /></div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31886&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31886&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/02/03/rmoug-training-days-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RMOUG Training Days 2012</title>
		<link>http://sqlhjalp.blogspot.com/2012/02/rmoug-training-days-2012.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rmoug-training-days-2012</link>
		<comments>http://sqlhjalp.blogspot.com/2012/02/rmoug-training-days-2012.html#comments</comments>
		<pubDate>Fri, 03 Feb 2012 17:45:00 +0000</pubDate>
		<dc:creator>Keith Larson</dc:creator>
		
		<guid isPermaLink="false">http://planetmysql.ru/?guid=3a25dc82ca31f46497310db40d1919b2</guid>
		<description><![CDATA[The Rocky Mountain Oracle User Group ( RMOUG ) Training days are almost here.&#160;&#160; This year they are going to have a MySQL Oracle ACE Director, Ronald Bradford talk on MySQL Security Essentials.&#160; I will also be having a MySQL Crash Course . I was going to talk about replication but after attending the IOUG User summit and the seeing the vast interest in MySQL from Oracle users, I decided to take a step back and do this talk 1st. I have had a similar talk at a RMOUG meetup hands on labs in the past, but it has been updated.Alex Gorbachev of Pythian also has a session, Monitoring MySQL with Oracle Cloud Control 12c. Look forward to seeing everyone and I think great things are on the horizon with&#160; RMOUG and MySQL.]]></description>
			<content:encoded><![CDATA[The Rocky Mountain Oracle User Group ( <a href="http://www.rmoug.org/">RMOUG</a> ) <a href="http://www.teamycc.com/RMOUG_2012_Conference/index.html">Training days</a> are almost here.&nbsp;&nbsp; This year they are going to have a MySQL Oracle ACE Director, <a href="http://apex.oracle.com/pls/otn/f?p=19297:4:3039779342908998::NO:4:P4_ID:1820">Ronald Bradford</a> talk on <a href="http://www.technicalconferencesolutions.com/pls/caat/caat_abstract_reports.display_presenter_abstract?conference_id=99&amp;presenter_id=443&amp;abstract_id=294993">MySQL Security Essentials.&nbsp; </a>I will also be having a <a href="http://www.technicalconferencesolutions.com/pls/caat/caat_abstract_reports.display_presenter_abstract?conference_id=99&amp;presenter_id=470&amp;abstract_id=301585">MySQL Crash Course </a>. I was going to talk about replication but after attending the IOUG User summit and the seeing the vast interest in MySQL from Oracle users, I decided to take a step back and do this talk 1st. I have had a similar talk at a RMOUG meetup hands on labs in the past, but it has been updated.<br /><br />Alex Gorbachev of Pythian also has a session, <a href="http://www.technicalconferencesolutions.com/pls/caat/caat_abstract_reports.display_presenter_abstract?conference_id=99&amp;presenter_id=86&amp;abstract_id=295470">Monitoring MySQL with Oracle Cloud Control 12c</a>. <br /><br />Look forward to seeing everyone and I think great things are on the horizon with&nbsp; RMOUG and MySQL.<div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3812360659149323517-4283927102006869754?l=sqlhjalp.blogspot.com" alt="" /></div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31886&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31886&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/02/03/rmoug-training-days-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Game Over for NoSQL? Discussing Databases in Online Social Gaming</title>
		<link>http://severalnines.blogspot.com/2012/02/game-over-for-nosql-discussing.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=game-over-for-nosql-discussing-databases-in-online-social-gaming</link>
		<comments>http://severalnines.blogspot.com/2012/02/game-over-for-nosql-discussing.html#comments</comments>
		<pubDate>Fri, 03 Feb 2012 16:08:00 +0000</pubDate>
		<dc:creator>Vinay Joosery</dc:creator>
				<category><![CDATA[gaming]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[whitepaper]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=1ada43db1d0ee7b6fd074c8c1e045b01</guid>
		<description><![CDATA[According to VentureBeat*, games companies raised a record-breaking $1.54 billion in funding last year and social gaming accounted for over half of that. No wonder everyone wants to have a piece of that pie!With the arrival of social network platforms, the gaming industry has seen an explosion in casual and social gaming. The social gamer represents a massive audience that cuts across all age, gender and demographic boundaries. Online social games are some of the most demanding applications in the world, with millions of users, stringent response times, complex simulation models and billing requirements. Games take years to develop for a reason ...Online social games are data-driven applications, and databases are central to these applications. However, there is no single database architecture that will fit the different types of data that the application needs to store. A data management architecture needs to account for the diversity of data, and optimize for some of the differences in the datatypes. E.g. it is ok to lose leaderboard data during a game as it can be reconstituted, whereas billing data needs to be 100% ACID. Therefore, with the generous contribution of Joshua Butcher, we just published a whitepaper that discusses the different types of data stored for various functions in social gaming. We will see that there cannot be a one-size-fits-all approach to database architecture, and suggest a sharding strategy based on schema partitioning. With our new whitepaper, we’re also starting a discussion on what the database of choice might be for anyone wanting to develop online social games. With so many NoSQL databases now available, one might wonder why MySQL would be a good database choice for the gaming industry. To find out, download our whitepaper today! If you have any questions or comments, feel free to reply to this blog below or reach out to us on Facebook, LinkedIn, Xing, Twitter or directly via these contact details.* http://venturebeat.com/2012/01/06/deanbeat-game-companies-raised-a-record-breaking-1-55b-in-2011/]]></description>
			<content:encoded><![CDATA[<div dir="ltr" trbidi="on">According to VentureBeat*, games companies raised a record-breaking $1.54 billion in funding last year and social gaming accounted for over half of that. No wonder everyone wants to have a piece of that pie!<br /><br />With the arrival of social network platforms, the gaming industry has seen an explosion in casual and social gaming. The social gamer represents a massive audience that cuts across all age, gender and demographic boundaries. Online social games are some of the most demanding applications in the world, with millions of users, stringent response times, complex simulation models and billing requirements. Games take years to develop for a reason ...<br /><br />Online social games are data-driven applications, and databases are central to these applications. However, there is no single database architecture that will fit the different types of data that the application needs to store. A data management architecture needs to account for the diversity of data, and optimize for some of the differences in the datatypes. E.g. it is ok to lose leaderboard data during a game as it can be reconstituted, whereas billing data needs to be 100% ACID. <br /><br />Therefore, with the <a href="http://www.severalnines.com/resources/white-papers" >generous contribution of Joshua Butcher</a>, we just published a <a href="http://www.severalnines.com/resources/white-papers" >whitepaper</a> that discusses the different types of data stored for various functions in social gaming. We will see that there cannot be a one-size-fits-all approach to database architecture, and suggest a sharding strategy based on schema partitioning. <br /><br />With our new <a href="http://www.severalnines.com/resources/white-papers" >whitepaper</a>, we’re also starting a discussion on what the database of choice might be for anyone wanting to develop online social games. With so many NoSQL databases now available, one might wonder why MySQL would be a good database choice for the gaming industry. To find out, <a href="http://www.severalnines.com/resources/white-papers" >download our whitepaper</a> today! <br /><br />If you have any questions or comments, feel free to reply to this blog below or reach out to us on <a href="http://www.facebook.com/pages/Severalnines/104774439598301" >Facebook</a>, <a href="http://www.linkedin.com/company/severalnines" >LinkedIn</a>, <a href="https://www.xing.com/companies/severalnines" >Xing</a>, <a href="http://twitter.com/#!/severalnines" >Twitter</a> or directly via these <a href="http://www.severalnines.com/contact-us" >contact details</a>.<br /><br />* <span>http://venturebeat.com/2012/01/06/deanbeat-game-companies-raised-a-record-breaking-1-55b-in-2011/</span> </div><div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/2501729684197293226-8401065147533352710?l=severalnines.blogspot.com" alt="" /></div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31885&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31885&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/02/03/game-over-for-nosql-discussing-databases-in-online-social-gaming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some guidelines for MySQL security &#124; Nil Infobin [Digg]</title>
		<link>http://feedproxy.google.com/~r/NilInfobin/~3/-ISpFW3wPwg/some_guidelines_for_mysql_security_nil_infobin?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=some-guidelines-for-mysql-security-nil-infobin-digg</link>
		<comments>http://feedproxy.google.com/~r/NilInfobin/~3/-ISpFW3wPwg/some_guidelines_for_mysql_security_nil_infobin#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:23:07 +0000</pubDate>
		<dc:creator>Nilnandan Joshi</dc:creator>
		
		<guid isPermaLink="false">http://digg.com/news/technology/some_guidelines_for_mysql_security_nil_infobin</guid>
		<description><![CDATA[Some guidelines for MySQL security]]></description>
			<content:encoded><![CDATA[Some guidelines for MySQL security<img src="http://feeds.feedburner.com/~r/NilInfobin/~4/-ISpFW3wPwg" height="1" width="1" /><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31884&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31884&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/02/03/some-guidelines-for-mysql-security-nil-infobin-digg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.935 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-04 23:03:43 -->
<!-- Compression = gzip -->
