- 最后登录
- 2023-8-16
- 在线时间
- 1686 小时
- 威望
- 2135
- 金钱
- 50532
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 5207
- 精华
- 39
- 积分
- 2135
- UID
- 2
|
3#
发表于 2013-8-27 19:50:38
Event Waits %Time -outs Total Wait Time (s) Avg wait (ms) Waits /txn % bg time
db file parallel write 10,389 0 1,633 157 0.09 15.04
log file parallel write 82,898 0 1,201 14 0.73 11.06
Event Waits Time(s) Avg wait (ms) % DB time Wait Class
db file sequential read 1,689,756 31,618 19 8.75 User I/O
enq: TX - row lock contention 231 29,266 126692 8.10 Application
DB CPU 6,250 1.73
log file sync 112,522 5,101 45 1.41 Commit
latch: shared pool 1,979 3,339 1687 0.92 Concurrency
user commits 113,272 27.74 1.00
Function Name Reads: Data Reqs per sec Data per sec Writes: Data Reqs per sec Data per sec Waits: Count Avg Tm(ms)
Direct Reads 76G 21.11 19.0571 2M 0.06 .000489 0
Others 13.5G 183.55 3.37423 2.1G 2.26 .535519 750.3K 0.08
Buffer Cache Reads 14.6G 448.92 3.65681 0M 0.00 0M 1744.4K 18.54
LGWR 3M 0.05 .000734 3.8G 45.52 .952035 84.4K 14.06
DBWR 0M 0.00 0M 2.5G 39.17 .632731 0
Direct Writes 0M 0.00 0M 19M 0.25 .004652 0
TOTAL: 104G 653.63 26.0888 8.5G 87.27 2.12542 2579.1K 13.02
IOPS很低 但是 延迟不低 ,
是我 我会要求先测IO:
给出 下面的 输出- set serveroutput on;
- DECLARE
- lat INTEGER;
- iops INTEGER;
- mbps INTEGER;
- BEGIN
- DBMS_RESOURCE_MANAGER.CALIBRATE_IO(20, 15, iops, mbps, lat);
- DBMS_OUTPUT.PUT_LINE('max_iops = ' || iops);
- DBMS_OUTPUT.PUT_LINE('latency = ' || lat);
- dbms_output.put_line('max_mbps = ' || mbps);
- end;
- /
复制代码 |
|