一个很简单测试oracle压力方法(有更新)

今天做了一个简单的测试数据库压力,把东西分享了一下。

服务器情况:


操作系统版本:CentOS 5.6 -64
cpu:Intel(R) Xeon(R) CPU X5660 @ 2.80GHz * 24
内存:Mem: 16425876
Swap: 32764556
数据库版本:oracle10gR2

节点个数:2


测试方法如下:通过 awr找出测试系统里面消耗比较多sql(可以是IO或者是执行时间)
使用 python写了如下脚本

#! /usr/bin/python #coding=UTF-8 import cx_Oracle import time def hello(): '''Hello cx_Oracle示例: 1)打印数据库版本信息. 2)查询表数据.''' conn = cx_Oracle.connect("jscn/jscn@192.168.100.199:1521/jscn") cur = conn.cursor() try: print "Oracle Version:%s" % conn.version print "Table SUB_POLICY rows:" interger = 1 while interger <= 30000000: sql="select * from product PRODUCT_ID= '0lea940'" sql1="select * from productcategory where CATEGORY_ID='xhn6238'" cur.execute(sql) for row in cur: print row time.sleep(1) cur.execute(sql1) for row in cur: print row time.sleep(10) interger = interger + 1 finally: cur.close() conn.close() hello()

这里要首先安装好 python和cx_ Oracle,关于如何安装这两个软件,可以自己百度,过几天我把我的安装方法写上去。
让我么简单看看这个python脚本,如果童鞋们要用这个脚本,只要修改连接串和sql部分就可以了,在这个脚本里面,首先执行"sql",然后休息1秒钟,再执行"sql1"部分,再休息10,这个就是一个循环,一共循环30000000次。
友情提醒一下python对空格特别敏感,复制的时候要小心了。
如果只是简单执行这一个脚本,那叫什么压力测试呢,这个时候要请其他童鞋协助了,在dos下执行如下命令,win7下面最好使用管理员用户执行。

--切换到脚本所在的目录,执行以下命令 for /L %i in (1,1,50) do start "test %i" python test.py
这个脚本是把这个test.py执行开50个窗口执行。
如果想停止,可以执行以下命令
taskkill /im python.exe
现在让我们来看一下数据库的性能,
1、查看节点的连接数,到两个节点上面分别查看数据库的连接数
登录到第一个节点,查看python连接数
SQL> select count(*) from v$session where program='python.exe' ;

COUNT(*)
----------
24
登录到第二个节点,查看python连接数
SQL> select count(*) from v$session where program='python.exe' ;

COUNT(*)
----------
26
查看总的连接数
SQL> select count(*) from gv$session where program='python.exe' ;

COUNT(*)
----------
50

2、查看每个用户的pga分配大小
Select spid ,Value / 1024 / 1024 Mb From V$session s, V$sesstat St, V$statname Sn, V$process p Where St.Sid = s.Sid And St.Statistic# = Sn.Statistic# And Sn.Name Like 'session pga memory' And p.Addr = s.Paddr and s.program='python.exe' Order By Value Desc;
SPID MB
------------ ----------
1936 0.73026275
1906 0.73026275
1955 0.73026275
1940 0.73026275
1953 0.73026275
1946 0.73026275
1934 0.73026275
1942 0.73026275
1972 0.73026275
1959 0.73026275
1900 0.73026275
1961 0.73026275
1970 0.73026275
1968 0.73026275
1957 0.73026275
1902 0.73026275
1904 0.73026275
1919 0.73026275
1938 0.73026275
1923 0.73026275

SPID MB
------------ ----------
1921 0.73026275
1925 0.73026275
1917 0.73026275
1910 0.73026275
1908 0.73026275
1927 0.73026275
这里0.73026275*用户数<pga的大小。

3、查看数据库服务器每个spid对应的内存使用情况(下面举例说明)
[oracle@rac2 ~]$ top -p 1936,1906,1955,1940
top - 19:30:49 up 11 days, 9:24, 1 user, load average: 0.08, 0.08, 0.03
Tasks: 4 total, 0 running, 4 sleeping, 0 stopped, 0 zombie
Cpu(s): 0.3%us, 0.1%sy, 0.0%ni, 99.6%id, 0.1%wa, 0.0%hi, 0.0%si, 0.0%st
Mem: 16425876k total, 6192932k used, 10232944k free, 422484k buffers
Swap: 32764556k total, 344k used, 32764212k free, 3581576k cached

PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
1936 oracle 15 0 1681m 26m 22m S 0.0 0.2 0:00.13 oracle
1906 oracle 15 0 1681m 26m 22m S 0.0 0.2 0:00.14 oracle
1955 oracle 15 0 1681m 26m 22m S 0.0 0.2 0:00.12 oracle
1940 oracle 15 0 1681m 26m 22m S 0.0 0.2 0:00.15 oracle

这里 RES的值*个数<总内存。

呵呵,结束了,简单吧。


新的补充

今天把python脚本补充一下,之前一个进程一个连接,那我要测1000个连接,不是要启动1000进程吗?这样太恐怖了,是不要要多线程呢?当然要了,我们在更新一个python代码

#! /usr/bin/python #coding=UTF-8 import cx_Oracle import time import sys import logging import logging.config import threading from optparse import OptionParser def hello(): '''Hello cx_Oracle示例: 1)打印数据库版本信息. 2)查询表数据.''' conn = cx_Oracle.connect("jscn/jscn@192.168.100.199:1521/jscn") cur = conn.cursor() try: print "Oracle Version:%s" % conn.version print "Table SUB_POLICY rows:" interger = 1 while interger <= 30000000: sql="select * from product PRODUCT_ID= '0lea940'" sql1="select * from productcategory where CATEGORY_ID='xhn6238'" cur.execute(sql) for row in cur: print row time.sleep(1) cur.execute(sql1) for row in cur: print row time.sleep(10) interger = interger + 1 finally: cur.close() conn.close() def _handleCmdLine(args): parser = OptionParser() parser.add_option("--threadnum", dest="threadnum",action="store", type="int", default=10, help="thread num") (options, args) = parser.parse_args(args) return (options,args) class TestThread(threading.Thread): def run(self): while True: hello() def main(): options,args=_handleCmdLine(sys.argv) threads=[] for i in range(options.threadnum): th=TestThread() threads.append(th) th.setDaemon(True) th.start() for t in threads: t.join() if __name__ == '__main__': #logging.exception("main except") try: main() except Exception: logging.exception("main except")

如何执行呢?比如我们把脚本叫test.py

在dos界面输入:

C:\Users\jscn-xw\Desktop>python test.py -h Usage: test.py [options] Options: -h, --help show this help message and exit --threadnum=THREADNUM thread num
比如我们要输入进程为300个

C:\Users\jscn-xw\Desktop>python test.py --threadnum=300

现在已经进程就可以跑300个连接了。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值