| Twitter | Del.icio.us | Comments (6) | | Edit

留言评论 | Comments (6)

看来oracle还是主要针对oltp了,
对dw来讲1m甚至更大显然更好

redo的Stripe Size 是128K,而所有的数据文件的Stripe Size 都是1M的。对ASM来说,1M大小的Stripe Size 是一个比较合理的值。

ASM_POWER_LIMIT 这个东西还是蛮好用的,我们曾经在做数据仓库的测试时加磁盘,本来100个磁盘,后来又加了60个磁盘,把并行度开到11,结果2个小时就rebalance完了。

从11g开始ASM的Stripe Size也不仅只有128K,1M两种选择了,11G ASM支持1, 4, 16, 64 MB的AU.

11g 对 ASM 作了一些改进

类似于以前支持多个数据库数据块的方式

都用上ASM了??

ASM_POWER_LIMIT is not a concern to me. The workaround is that setting it to 0 when adding/deleting a disk:
alter diskgroup ... add disk '...' size ... rebalance power 0;
and then scheduling the balancing during non-peak period:
alter diskgroup ... rebalance power 11 nowait;

添加评论