作者:mobiledu2502923673 | 来源:互联网 | 2023-09-24 17:02
ASM ( Automatic Storage Management ) 的一个重要特性是可以进行在线磁盘重配置及动态均衡。
当我们向已有磁盘组中增加磁盘后,Oracle会自动进行IO均衡,为了完成这个任务,Oracle引入了一个新的后台进程:
[oracle@danaly ~]$ ps -ef|grep ora_rbal* oracle 3815 1 0 Jan23 ? 00:00:01 ora_rbal_danaly oracle 31601 23407 0 14:33 pts/2 00:00:00 grep ora_rbal* |
这个进程用来进行IO均衡。
IO调整是自动进行的,并且这个平衡速度是可以控制的。
Oracle通过一个新增的参数:asm_power_limit 来控制速度。
该参数取值范围为1~11,参数值越大平衡速度越快。
Oracle文档对该参数解释为:
ASM_POWER_LIMIT specifies the maximum power on an Automatic Storage Management instance for disk rebalancing. The higher the limit, the faster rebalancing will complete. Lower values will take longer, but consume fewer processing and I/O resources.
If the POWER clause of a rebalance operation is not specified, then the default power will be the value of ASM_POWER_LIMIT.
该参数缺省值为1:
SQL> show parameter power NAME TYPE VALUE ------------------------------------ ---------------------- ---------------- asm_power_limit integer 1 |