Super Smack
Super Smack 是一个强大的压力测试工具,支持 MySQL, PostgreSQL, Oracle。最开始的版本是由Sasha Pachev写成,由Jeremy Zawodny在维护,而现在,是
Tony Bourke在维护,根据 Tony Bourke 的 开发 log 来看,2005-08-30 后,super smack 就已经停止发布新的版本,但这并不妨碍我们现在继续使用它(这个工具的开发者和维护者很伟大)。
安装
安装有点点麻烦,主要是编译时会出现一些问题。
[root@localhost tmp]# wget http://vegan.net/tony/supersmack/super-smack-1.3.tar.gz [root@localhost tmp]# tar xvzf super-smack-1.3.tar.gz [root@localhost super-smack-1.3]# ./configure --prefix=/usr/local/super-smack --with-mysql --with-mysql-lib=/usr/local/mysql/lib/mysql --with-mysql-include=/usr/local/mysql/include/mysql [root@localhost super-smack-1.3]# make [root@localhost super-smack-1.3]# make install
说明
1 编译时,必须指定它所支持的数据库管理系统,否则会报如下错误。
...... configure: error: You should include support for at least one database! Reconfigure with one or more of: --with-mysql --with-pgsql --with-oracle
2 选择支持 MySQL 后, 在 MySQL 编译安装的情况下时, 也需要在编译参数中指定 MySQL 的 lib。
3 编译时,dictionary.h 和 super-smack.cc 报错:
...... dictionary.h:93: error: ‘strlen’ was not declared in this scope super-smack.cc:126: error: ‘strlen’ was not declared in this scope
在 super smack 源代码的 src 目录,找到 dictionary.h, super-smack.cc,分别加上#include
4 编译时,query.cc 报错
query.cc:200: error: cast from ‘char*’ to ‘unsigned int’ loses precision query.cc:200: error: cast from ‘char*’ to ‘unsigned int’ loses precision query.cc:219: error: cast from ‘char*’ to ‘unsigned int’ loses precision query.cc:219: error: cast from ‘char*’ to ‘unsigned int’ loses precision
在 super smack 源代码的 src 目录, 找到 query.cc文件,将上面指定的 200, 219 行中的unsigned int改为unsigned long。
用其测试 MySQL 之前奏
1 看 Makefile 才知道, smack 文件是放在 /usr/share/smacks 这个目录下(开始并不知道源代码中有一份), 产生的数据文件是在/var/smack-data目录下
... SMACKS_DIR = /usr/share/smacks DATADIR = /var/smack-data ...
2 根据 MySQL 的参数对应修改 /usr/share/smacks 目录下的 select-key.smack 和 update-select.smack 文件。包括 user, host, db, pass, 还有,最重要的 socket 路径。
3 未将 super smack 的 bin 目录加入 PATH 时,则还需:
gen_data_file "gen-data -n 90000 -f %12-12s%n,%25-25s,%n,%d"; #改为 gen_data_file "./gen-data -n 90000 -f %12-12s%n,%25-25s,%n,%d"; #或者直接 gen_data_file "/usr/local/super-smack/bin/gen-data -n 90000 -f %12-12s%n,%25-25s,%n,%d";
4 因为在 select-key.smack 和 update-select.smack 文件中指定的数据文件是 words.dat, 而安装默认情况下 words.dat 为空文件:
[root@localhost smack-data]# ls -al total 5320 drwxr-xr-x 2 root root 4096 May 26 18:12 . drwxr-xr-x 24 root root 4096 May 26 17:25 .. -rw-r--r-- 1 root root 5421337 May 26 17:25 .. http_auth.dat -rw-r--r-- 1 root root 0 May 26 17:25 .. words.dat
所以,需将 select-key.smack 和 update-select.smack 文件中指定的数据 words.dat 改为 http_auth.dat(其实为了统一,最好也是 http_auth.dat,因为文件中指定测试的表名是 http_atuh)。
当然,为了不修改,也可以在开始先执行如下命令:
[root@localhost bin]# /usr/local/super-smack/bin/gen-data -n 90000 -f %12-12s%n,%25-25s,%n,%d > /var/smack-data/words.dat
5 将 /usr/share/smacks 下文件 copy 到 /usr/local/super-smack/bin/ 目录下:
[root@localhost super-smack]# cp /usr/share/smacks/* bin/
运行
[root@localhost bin]# ./super-smack -d mysql select-key.smack 20 1000 Query Barrel Report for client smacker1 connect: max=2204ms min=1ms avg= 221ms from 20 clients Query_type num_queries max_time min_time q_per_s select_index 40000 0 0 5017.26
参数:
实际上,还有-D参数来指定数据文件,默认路径如前面提到是 /var/smack-data, 这个路径需跟 select-key.smack 和 update-select.smack 指定的一致。
返回结果:
建议继续学习:
- Xvfb+YSlow+ShowSlow搭建前端性能测试框架 (阅读:54214)
- 安全测试与渗透测试区别 (阅读:23699)
- 使用Fiddler对手机应用进行抓包测试 (阅读:6926)
- 服务器性能测试工具推荐 (阅读:6475)
- 给Apache做压力测试时遇到的问题 (阅读:5919)
- WEB性能测试工具推荐 (阅读:5650)
- 可用性测试好助手——Morae软件的应用 (阅读:5500)
- 12款很棒的浏览器兼容性测试工具推荐 (阅读:4863)
- 可用性测试的权衡之道(二) (阅读:4803)
- 在线测试不同操作系统不同浏览器网页的显示效果 (阅读:4691)
扫一扫订阅我的微信号:IT技术博客大学习
- 作者:gettyying 来源: 生活在
- 标签: Smack 压力测试 测试
- 发布时间:2011-05-30 13:52:59
- [54] IOS安全–浅谈关于IOS加固的几种方法
- [52] android 开发入门
- [52] 如何拿下简短的域名
- [51] 图书馆的世界纪录
- [50] Oracle MTS模式下 进程地址与会话信
- [49] Go Reflect 性能
- [46] 【社会化设计】自我(self)部分――欢迎区
- [46] 读书笔记-壹百度:百度十年千倍的29条法则
- [36] 程序员技术练级攻略
- [29] 视觉调整-设计师 vs. 逻辑