<?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>评论：更改Innodb 数据页大小优化MySQL</title>
	<atom:link href="http://www.mysqlsupport.cn/change_innodb_page_size/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlsupport.cn/change_innodb_page_size/</link>
	<description>MySQL支持，提供专业技术支持性能调优，架构设计</description>
	<lastBuildDate>Thu, 19 Aug 2010 05:39:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：rj03hou</title>
		<link>http://www.mysqlsupport.cn/change_innodb_page_size/comment-page-1/#comment-133</link>
		<dc:creator>rj03hou</dc:creator>
		<pubDate>Fri, 23 Jul 2010 12:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlsupport.cn/?p=105#comment-133</guid>
		<description>innodb plugin已经可以设置page size，通过设置page size来实现block的压缩功能。
对了，请问最终你有没有进行测试？测试结果能否公布？</description>
		<content:encoded><![CDATA[<p>innodb plugin已经可以设置page size，通过设置page size来实现block的压缩功能。<br />
对了，请问最终你有没有进行测试？测试结果能否公布？</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：wubx</title>
		<link>http://www.mysqlsupport.cn/change_innodb_page_size/comment-page-1/#comment-128</link>
		<dc:creator>wubx</dc:creator>
		<pubDate>Tue, 13 Apr 2010 08:55:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlsupport.cn/?p=105#comment-128</guid>
		<description>@ruochen, 
这个好象也是Innodb-plugin，只是支持Page的压缩。并不是真正的PageSize更改。保持关注。</description>
		<content:encoded><![CDATA[<p>@ruochen,<br />
这个好象也是Innodb-plugin，只是支持Page的压缩。并不是真正的PageSize更改。保持关注。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ruochen</title>
		<link>http://www.mysqlsupport.cn/change_innodb_page_size/comment-page-1/#comment-127</link>
		<dc:creator>ruochen</dc:creator>
		<pubDate>Thu, 08 Apr 2010 06:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlsupport.cn/?p=105#comment-127</guid>
		<description>xtradb准备支持多page size，在创建数据库时可以指定，其他的很多特性也很吸引人

现在的局面是innodb及其相关的变种（innodb build in &amp; plug &amp;xtradb）的统一性问题，怕越来越不兼容，不知道他们的互相交流怎么样。
还有mariadb包含的新引擎PBXT和maria也值得关注


http://www.mysqlperformanceblog.com/2010/03/17/percona-xtradb-9-1-released-and-new-coming-features/</description>
		<content:encoded><![CDATA[<p>xtradb准备支持多page size，在创建数据库时可以指定，其他的很多特性也很吸引人</p>
<p>现在的局面是innodb及其相关的变种（innodb build in &amp; plug &amp;xtradb）的统一性问题，怕越来越不兼容，不知道他们的互相交流怎么样。<br />
还有mariadb包含的新引擎PBXT和maria也值得关注</p>
<p><a href="http://www.mysqlperformanceblog.com/2010/03/17/percona-xtradb-9-1-released-and-new-coming-features/" rel="nofollow">http://www.mysqlperformanceblog.com/2010/03/17/percona-xtradb-9-1-released-and-new-coming-features/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：wubx</title>
		<link>http://www.mysqlsupport.cn/change_innodb_page_size/comment-page-1/#comment-126</link>
		<dc:creator>wubx</dc:creator>
		<pubDate>Tue, 06 Apr 2010 07:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlsupport.cn/?p=105#comment-126</guid>
		<description>@ruochen, 
这个和MySQL内部实现有一定的关系。并不是所有的业务都适合改成8K。

8K的效果比16K的好了很多。</description>
		<content:encoded><![CDATA[<p>@ruochen,<br />
这个和MySQL内部实现有一定的关系。并不是所有的业务都适合改成8K。</p>
<p>8K的效果比16K的好了很多。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ruochen</title>
		<link>http://www.mysqlsupport.cn/change_innodb_page_size/comment-page-1/#comment-124</link>
		<dc:creator>ruochen</dc:creator>
		<pubDate>Thu, 01 Apr 2010 00:28:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlsupport.cn/?p=105#comment-124</guid>
		<description>5.1.45版本的是这样了
不知道为什么mysql一直将这个钉死为16k

/* The 2-logarithm of UNIV_PAGE_SIZE: */
#define UNIV_PAGE_SIZE_SHIFT	14
/* The universal page size of the database */
#define UNIV_PAGE_SIZE		(1 &lt;&lt; UNIV_PAGE_SIZE_SHIFT)

/* Maximum number of parallel threads in a parallelized operation */
#define UNIV_MAX_PARALLELISM	32</description>
		<content:encoded><![CDATA[<p>5.1.45版本的是这样了<br />
不知道为什么mysql一直将这个钉死为16k</p>
<p>/* The 2-logarithm of UNIV_PAGE_SIZE: */<br />
#define UNIV_PAGE_SIZE_SHIFT	14<br />
/* The universal page size of the database */<br />
#define UNIV_PAGE_SIZE		(1 &lt;&lt; UNIV_PAGE_SIZE_SHIFT)</p>
<p>/* Maximum number of parallel threads in a parallelized operation */<br />
#define UNIV_MAX_PARALLELISM	32</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ruochen</title>
		<link>http://www.mysqlsupport.cn/change_innodb_page_size/comment-page-1/#comment-122</link>
		<dc:creator>ruochen</dc:creator>
		<pubDate>Wed, 31 Mar 2010 07:54:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlsupport.cn/?p=105#comment-122</guid>
		<description>我原意也想主要问8k vs 16k,手误成18k了，哈哈</description>
		<content:encoded><![CDATA[<p>我原意也想主要问8k vs 16k,手误成18k了，哈哈</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：wubx</title>
		<link>http://www.mysqlsupport.cn/change_innodb_page_size/comment-page-1/#comment-119</link>
		<dc:creator>wubx</dc:creator>
		<pubDate>Wed, 31 Mar 2010 07:40:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlsupport.cn/?p=105#comment-119</guid>
		<description>@ruochen, 
  Innodb的页只支持2的N次方，所以18K的不能测试。另外不建议用4K的，有可能会在测试中遇到导数据都超过限制的现象。改为8K的，测试效果比原来的好了很多。我们的业务CPU从40％下降到了30％。如果你统计分析环境建议用大点的叶块。</description>
		<content:encoded><![CDATA[<p>@ruochen,<br />
  Innodb的页只支持2的N次方，所以18K的不能测试。另外不建议用4K的，有可能会在测试中遇到导数据都超过限制的现象。改为8K的，测试效果比原来的好了很多。我们的业务CPU从40％下降到了30％。如果你统计分析环境建议用大点的叶块。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ruochen</title>
		<link>http://www.mysqlsupport.cn/change_innodb_page_size/comment-page-1/#comment-118</link>
		<dc:creator>ruochen</dc:creator>
		<pubDate>Wed, 31 Mar 2010 01:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlsupport.cn/?p=105#comment-118</guid>
		<description>对4k 8k 18k做测试的对比有么？</description>
		<content:encoded><![CDATA[<p>对4k 8k 18k做测试的对比有么？</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：wubx</title>
		<link>http://www.mysqlsupport.cn/change_innodb_page_size/comment-page-1/#comment-27</link>
		<dc:creator>wubx</dc:creator>
		<pubDate>Sun, 13 Dec 2009 06:30:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlsupport.cn/?p=105#comment-27</guid>
		<description>后补：
　　对于该值的修改如果存在担心可以用 grep -r &quot;UNIV_PAGE_SIZE&quot; *  在innobase那个目录 看看调用的位置去肯定一下。欢迎拍砖。目前我测试没问题。可以用于生产。</description>
		<content:encoded><![CDATA[<p>后补：<br />
　　对于该值的修改如果存在担心可以用 grep -r &#8220;UNIV_PAGE_SIZE&#8221; *  在innobase那个目录 看看调用的位置去肯定一下。欢迎拍砖。目前我测试没问题。可以用于生产。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
