- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我在 TokuDB 引擎上做了一些性能测试(我在 Dell PowerEdge R720 上使用 Tokutek 网站上的 mariadb-5.5.30-tokudb-7.0.4,内存为 128GB,TokuDB 的默认内存分配为 64GB - tokudb_cache_size) 并且出现了一些真正出乎意料的事情。
在测试场景中,我在一个空表(33 列、1 个主 auto_increment 键、5 个索引)上插入了大约 9000 万行,同时我注意到显着的速度性能与 MyISAM 引擎相比,数据压缩,即从 15K 到 20K 记录/秒 和 30G 数据到 7G TokuDB,查询性能急剧下降(没有索引是集群)。
特别是简单查询:select count(*) from test_table; MyISAM 花费了 0.0001 秒,而 TokuDB 花费了 20 秒。还查询扫描所有 90M 行表(where column_not_indexed = something),对于 MyISAM 花费了大约 2 分钟,对于 TokuDB,它们的持续时间超过 5 分钟 !所有其他查询也有性能下降。对于相同大小的表,它们都不比 MyISAM 好。
因此,虽然我认为 TokuDB 使用的分形树索引在查询速度方面具有出色的性能,但事实并非如此。有没有测试过 TokuDB 的人有同样的问题,或者可以给出如何提高查询性能的提示?
建表语句为:
CREATE TABLE `table` (
`Event` bigint(20) NOT NULL AUTO_INCREMENT,
`TimeStamp` bigint(20) NOT NULL DEFAULT '0',
`Field_1` smallint(4) NOT NULL DEFAULT '0',
`Field_2` bigint(12) NOT NULL DEFAULT '0',
`Field_3` varchar(40) NOT NULL DEFAULT '',
`Field_4` bigint(15) DEFAULT NULL,
(...)
PRIMARY KEY (`Event`) USING BTREE,
KEY `Index_ts` (`Timestamp`),
KEY `Index_1` (`Field_1`),
KEY `Index_2` (`Field_2`),
KEY `Index_3` (`Field_3`)
)ENGINE=TokuDB DEFAULT CHARSET=latin1
一些查询是:
SELECT count(*) FROM table
**MyISAM:0.00981429 TokuDB:21.40218998**
SELECT Field_2, Timestamp FROM table IGNORE KEY (Index_3, Index_1) WHERE (Field_3 LIKE "%asweb.be") AND (Field_1 < 42) ORDER BY Timestamp LIMIT 2000
**MyISAM:125.9707183 TokuDB:356.6146628**
SELECT Field_2, Timestamp FROM table IGNORE KEY (Index_1) WHERE (Field_4 = "206012216849912") AND (Field_1 < 42) ORDER BY Timestamp LIMIT 2000
**MyISAM:120.0966643 TokuDB:293.2259202**
SELECT Field_2, Timestamp FROM table IGNORE KEY (Index_1) WHERE (Field_2 = "32475731333") AND (Field_1 < 42) ORDER BY Timestamp LIMIT 100000
**MyISAM:0.00552937 TokuDB:0.18659729**
还有:
Query 1: SHOW PROFILE CPU FOR QUERY 1;
Status Duration CPU_user CPU_system
Queried about 88450000 rows 0.001905 0 0
Queried about 88460000 rows 0.001902 0.004 0
Queried about 88470000 rows 0.001906 0 0
Queried about 88480000 rows 0.001905 0.004 0
Queried about 88490000 rows 0.001664 0 0
Queried about 88500000 rows 0.001907 0.004 0
Queried about 88510000 rows 0.001898 0 0
Queried about 88520000 rows 0.001903 0.004001 0
Queried about 88530000 rows 0.001902 0 0
Queried about 88540000 rows 0.001903 0.004 0
Queried about 88550000 rows 0.001661 0 0
Queried about 88560000 rows 0.001905 0 0
Queried about 88570000 rows 0.001901 0.004 0
Queried about 88580000 rows 0.001912 0 0
Queried about 88590000 rows 0.001902 0.004 0
Queried about 88600000 rows 0.001908 0 0
Queried about 88610000 rows 0.001664 0.004001 0
Queried about 88620000 rows 0.001899 0 0
Queried about 88630000 rows 0.001905 0.004 0
Queried about 88640000 rows 0.001901 0 0
Queried about 88650000 rows 0.0019 0.004 0
Queried about 88660000 rows 0.001661 0 0
Queried about 88670000 rows 0.001906 0.004 0
Queried about 88680000 rows 0.001895 0 0
Queried about 88690000 rows 0.001907 0 0
Queried about 88700000 rows 0.001907 0.004001 0
Queried about 88710000 rows 0.001905 0 0
Queried about 88720000 rows 0.001663 0.004 0
Queried about 88730000 rows 0.001905 0 0
Queried about 88740000 rows 0.001903 0.004 0
Queried about 88750000 rows 0.001899 0 0
Queried about 88760000 rows 0.001898 0.004 0
Queried about 88770000 rows 0.001898 0 0
Queried about 88780000 rows 0.001665 0.004001 0
Queried about 88790000 rows 0.0019 0 0
Queried about 88800000 rows 0.001903 0.004 0
Queried about 88810000 rows 0.001909 0 0
Queried about 88820000 rows 0.001903 0.004 0
Queried about 88830000 rows 0.001663 0 0
Queried about 88840000 rows 0.001902 0 0
Queried about 88850000 rows 0.001901 0.004 0
Queried about 88860000 rows 0.001903 0 0
Queried about 88870000 rows 0.0019 0.004001 0
Queried about 88880000 rows 0.001904 0 0
Queried about 88890000 rows 0.001662 0.004 0
Queried about 88900000 rows 0.001903 0 0
Queried about 88910000 rows 0.001901 0.004 0
Queried about 88920000 rows 0.001905 0 0
Queried about 88930000 rows 0.001904 0.004 0
Queried about 88940000 rows 0.001898 0 0
Queried about 88950000 rows 0.001666 0.004001 0
Queried about 88960000 rows 0.001901 0 0
Queried about 88970000 rows 0.001905 0.004 0
Queried about 88980000 rows 0.001899 0 0
Queried about 88990000 rows 0.001907 0 0
Queried about 89000000 rows 0.00166 0.004 0
Queried about 89010000 rows 0.001903 0 0
Queried about 89020000 rows 0.001899 0.004 0
Queried about 89030000 rows 0.001905 0 0
Queried about 89040000 rows 0.0019 0.004001 0
Queried about 89050000 rows 0.0019 0 0
Queried about 89060000 rows 0.001662 0.004 0
Queried about 89070000 rows 0.001897 0 0
Queried about 89080000 rows 0.001901 0.004 0
Queried about 89090000 rows 0.001894 0 0
Queried about 89100000 rows 0.001897 0.004 0
Queried about 89110000 rows 0.001891 0 0
Queried about 89120000 rows 0.001667 0 0
Queried about 89130000 rows 0.001899 0.004001 0
Queried about 89140000 rows 0.001901 0 0
Queried about 89150000 rows 0.001903 0.004 0
Queried about 89160000 rows 0.00191 0 0
Queried about 89170000 rows 0.001662 0.004 0
Queried about 89180000 rows 0.001906 0 0
Queried about 89190000 rows 0.001903 0.004 0
Queried about 89200000 rows 0.0019 0 0
Queried about 89210000 rows 0.001904 0.004001 0
Queried about 89220000 rows 0.001897 0 0
Queried about 89230000 rows 0.001663 0.004 0
Queried about 89240000 rows 0.001902 0 0
Queried about 89250000 rows 0.001906 0 0
Queried about 89260000 rows 0.001905 0.004 0
Queried about 89270000 rows 0.001903 0 0
Queried about 89280000 rows 0.001894 0.004 0
Queried about 89290000 rows 0.00166 0 0
Queried about 89300000 rows 0.001903 0.004001 0
Queried about 89310000 rows 0.001901 0 0
Queried about 89320000 rows 0.0019 0.004 0
Queried about 89330000 rows 0.001904 0 0
Queried about 89340000 rows 0.001661 0.004 0
Queried about 89350000 rows 0.001892 0 0
Queried about 89360000 rows 0.001808 0.004 0
Queried about 89370000 rows 0.000027 0 0
end 0.000008 0 0
query end 0.000008 0 0
closing tables 0.000008 0 0
freeing items 0.000007 0 0
updating status 0.000029 0 0
logging slow query 0.000005 0 0
cleaning up 0.000005 0 0
闻起来像 bug ?
最佳答案
MyISAM 在全表扫描上击败了 InnoDB 和 TokuDB,因为它基本上只是按顺序扫描文件。
关于mysql - MariaDB 中的 TokuDB 性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18697054/
在这段令人惊叹的视频 ( https://www.youtube.com/watch?v=udix3GZouik ) 中,Alex Blom 谈到了 Ember 在移动世界中的“黑客攻击”。 在 22
我们希望通过我们的应用收集使用情况统计信息。因此,我们希望在服务器端的某个地方跟踪用户操作。 就性能而言,哪个选项更合适: 在 App Engine 请求日志中跟踪用户操作。即为每个用户操作写入一个日
在针对对象集合的 LINQ 查询的幕后究竟发生了什么?它只是语法糖还是发生了其他事情使其更有效的查询? 最佳答案 您是指查询表达式,还是查询在幕后的作用? 查询表达式首先扩展为“普通”C#。例如: v
我正在构建一个简单的照片库应用程序,它在列表框中显示图像。 xaml 是:
对于基于 Web 的企业应用程序,使用“静态 Hashmap 存储对象” 和 apache java 缓存系统有何优缺点?哪一个最有利于性能并减少堆内存问题 例如: Map store=Applica
我想知道在性能方面存储类变量的最佳方式是什么。我的意思是,由于 Children() 函数,存储一个 div id 比查找所有其他类名更好。还是把类名写在变量里比较好? 例如这样: var $inne
我已经阅读了所有这些关于 cassandra 有多快的文章,例如单行读取可能需要大约 5 毫秒。 到目前为止,我不太关心我的网站速度,但是随着网站变得越来越大,一些页面开始需要相当多的查询,例如一个页
最近,我在缓存到内存缓存之前的查询一直需要很长时间才能处理!在这个例子中,它花费了 10 秒。在这种情况下,我要做的就是获得 10 个最近的点击。 我感觉它加载了所有 125,592 行然后只返回 1
我找了几篇文章(包括SA中的一些问题),试图找到基本操作的成本。 但是,我尝试制作自己的小程序,以便自己进行测试。在尝试测试加法和减法时,我遇到了一些问题,我用简单的代码向您展示了这一点
这个问题在这里已经有了答案: Will Java app slow down by presence of -Xdebug or only when stepping through code? (
我记得很久以前读过 with() 对 JavaScript 有一些严重的性能影响,因为它可能对范围堆栈进行非确定性更改。我很难找到最近对此的讨论。这仍然是真的吗? 最佳答案 与其说 with 对性能有
我们有一个数据仓库,其中包含非规范化表,行数从 50 万行到 6 多万行不等。我正在开发一个报告解决方案,因此出于性能原因我们正在使用数据库分页。我们的报告有搜索条件,并且我们已经创建了必要的索引,但
我有一条有效的 SQL 语句,但需要很长时间才能处理 我有一个 a_log 表和一个 people 表。我需要在 people 表中找到给定人员的每个 ID 的最后一个事件和关联的用户。 SELECT
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
通常当我建立一个站点时,我将所有的 CSS 放在一个文件中,并且一次性定义与一组元素相关的所有属性。像这样: #myElement { color: #fff; background-
两者之间是否存在任何性能差异: p { margin:0px; padding:0px; } 并省略最后的分号: p { margin:0px; padding:0px } 提前致谢!
我的应用程序 (PHP) 需要执行大量高精度数学运算(甚至可能出现一共100个数字) 通过这个论坛的最后几篇帖子,我发现我必须使用任何高精度库,如 BC Math 或 GMP,因为 float 类型不
我一直在使用 javamail 从 IMAP 服务器(目前是 GMail)检索邮件。 Javamail 非常快速地从服务器检索特定文件夹中的消息列表(仅 id),但是当我实际获取消息(仅包含甚至不包含
我非常渴望开发我的第一个 Ruby 应用程序,因为我的公司终于在内部批准了它的使用。 在我读到的关于 Ruby v1.8 之前的所有内容中,从来没有任何关于性能的正面评价,但我没有发现关于 1.9 版
我是 Redis 的新手,我有一个包含数百万个成员(member) ID、电子邮件和用户名的数据集,并且正在考虑将它们存储在例如列表结构中。我认为 list 和 sorted set 可能最适合我的情
我是一名优秀的程序员,十分优秀!