- 最后登录
- 2014-1-10
- 在线时间
- 113 小时
- 威望
- 0
- 金钱
- 541
- 注册时间
- 2012-6-28
- 阅读权限
- 10
- 帖子
- 41
- 精华
- 0
- 积分
- 0
- UID
- 545
|
1#
发表于 2013-4-26 11:36:14
|
查看: 5839 |
回复: 7
环境: 系统 CentOS release 5.8 Linux db2 2.6.18-308.el5 #1 SMP Tue Feb 21 20:06:06 EST 2012 x86_64 x86_64 x86_64 GNU/Linux,内存 16G
数据库:Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
通过ps 命令查看占用内存最多的10个程序:ps aux | sort -nk 4 | tail
oracle 1121 0.0 4.7 5482380 782984 ? Ss Jan05 0:44 oracleaduniond (LOCAL=NO)
oracle 26436 0.0 4.8 5481360 800580 ? Ss Jan05 0:46 oracleaduniond (LOCAL=NO)
oracle 21953 0.0 6.3 5485520 1047204 ? Ss 2012 30:28 ora_mmon_aduniond
oracle 23683 0.0 11.2 5490456 1845068 ? Ss 2012 3:37 ora_cjq0_aduniond
oracle 21945 0.0 24.1 5486304 3960364 ? Ss 2012 14:09 ora_smon_aduniond
oracle 19934 2.6 26.7 5482400 4393676 ? Ss Jan29 3374:56 oracleaduniond (LOCAL=NO)
oracle 14969 2.0 27.2 5482404 4469732 ? Ss Jan02 3296:00 oracleaduniond (LOCAL=NO)
oracle 21933 0.0 28.6 5495884 4708336 ? Ss 2012 82:58 ora_dbw1_aduniond
oracle 21929 0.0 28.7 5494860 4715000 ? Ss 2012 83:06 ora_dbw0_aduniond
oracle 21925 0.0 29.3 5479568 4827696 ? Ss 2012 0:07 ora_mman_aduniond
dbw0和dbw1 占用的内存使用率比较高,同时mman进程的使用率也蛮高.
通过top查看信息,临时截的图
查看内存的使用率free -m
total used free shared buffers cached
Mem: 16041 13648 2392 0 17 12722
-/+ buffers/cache: 908 15132
Swap: 8001 70 7930
分配的sga大小
SQL> show parameter sga
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
lock_sga boolean FALSE
pre_page_sga boolean FALSE
sga_max_size big integer 5G
sga_target big integer 5G
进入数据库的时候就感觉有点断断续续的延迟
想请教一下刘大,这种dbw的内存使用情况是否正常.
|
|