A database is stored in an Automatic Storage Management (ASM) disk group, disk group,
DGROUP1 with SQL:
There is enough free space in the disk group for mirroring to be done.
What happens if the CONTROLLER1 failure group becomes unavailable due to error of for
maintenance?
A.
Transactions and queries accessing database objects contained in any tablespace stored in
DGROUP1 will fall.
B.
Mirroring of allocation units will be done to ASM disks in the CONTROLLER2 failure group until
the CONTROLLER1 for failure group is brought back online.
C.
The data in the CONTROLLER1 failure group is copied to the controller2 failure group and
rebalancing is initiated.
D.
ASM does not mirror any data until the controller failure group is brought back online, and
newly allocated primary allocation units (AU) are stored in the controller2 failure group, without
mirroring.
E.
Transactions accessing database objects contained in any tablespace stored in DGROUP1 will
fail but queries will succeed.
Explanation:
CREATE DISKGROUP NORMAL REDUNDANCY
* For Oracle ASM to mirror files, specify the redundancy level as NORMAL REDUNDANCY (2-way
mirroring by default for most file types) or HIGH REDUNDANCY (3-way mirroring for all files).
Looks ok
B.
Mirroring of allocation units will be done to ASM disks in the CONTROLLER2 failure group until the CONTROLLER1 for failure group is brought back online.
The answer is D. The system will continue work. Allocation of AU willl eb only on survived controller. But redundancy requirements (mirroring) can be satisfied only when controller1 will brought back online.
B
Definitly D (e.g Doc ID 466326.1)
B or D? B looks ok!!!
B is perfect!
B TRUE
Because we still have two disks in controller2, ASM will try to mirrow until there’s space.
http://docs.oracle.com/cd/E11882_01/server.112/e18951/asmdiskgrps.htm#OSTMG94124
D
From note Doc ID 466326.1
Oracle Database 11g introduces the ASM Fast Mirror Resync feature that significantly reduces the time required to resynchronize a transient failure of a disk. When a disk goes off line oracle engine doesnât balance other disk, instead ASM tracks the allocation units that are modified during the outage. The content present in the failed disk is tracked by other disks and any modification that is made to the content of failed disk is actually made in other available disks. Once we get the disk back and attach it, the data belonging to this disk and which got modified during that time will get resynchronized back again. This avoids the heavy re-balancing activity.
I think answer is D
B is wrong…
D
Metalink [ID 466326.1]
Sources:
http://wenku.baidu.com/view/c233fed649649b6648d747b9###
https://docs.oracle.com/cd/B28359_01/server.111/b31107/asmdiskgrps.htm#CHDDBHCH
https://sites.google.com/site/oracledbnote/asmdiskgroup
B
Hello dziri, in the links you provided nothing indicates that B is right!
It’s D
Doc ID 946213.1
If the ASM diskgroup is created with two failure groups, the loss of one entire failure group is tolerated with no downtime.
The diskgroup continues to operate normally, allocating space in the one surviving failure group. The failed disks show up in V$ASM_DISK twice (as of 10.1.0.4): once as missing and candidate statuses for HEADER_STATUS and STATE, respectively, and another as offline hung. The reason that you have missing, candidate, and offline hung disks is that you have had a failure group crash, and an insufficient number of surviving failure groups exists to complete a rebalance successfully to restore the contents from the failed disks. The offline hung entries in V$ASM_DISK essentially track the fact that there are extents whose redundancy has not yet been restored.
To restore the disks to a normal status, you need to add back the missing disks. To add the disks back, you must specify the FORCE flag, as in the following example, because they still have their old disk headers:
SQL> ALTER DISKGROUP DATA ADD FAILGROUP SAN2 DISK
‘/dev/rdsk/c3t19d3s4′ FORCE,’/dev/rdsk/c3t19d4s4’ FORCE,
‘/dev/rdsk/c3t19d5s4’ FORCE, ‘/dev/rdsk/c3t19d6s4’ FORCE REBALANCE POWER ;
When adding back the disks, be sure to specify the previously used failure group name. Adding these disks initiates a rebalance. Once the rebalance completes from adding back the disks from the failed failure group, the offline hung entries should go away.
It’s D, because: when the failure group CONTROLLER1 become unavialble anymore, we can not talk about mirroring. So answer B “Mirroring of …” is wrong, there is no mirroring anymore because we have now only one failure groupe available. tricky.