Dear All,
In this post i am sharing how to remove safely a used disk from ASM DiskGroup step by step process.
How to remove/delete a used disk from ASM DiskGroup Oracle 19c RAC
without impacting the data requires careful planning to ensure data integrity.
Notes / Points to remember ::
>> Normal or High Redundancy ASM will automatically rebalance the data across other disks.
>> If the disk group is External Redundancy, make sure there’s enough free space.
>> free_mb should be greater than the space occupied by the disk you plan to drop.
>> requried_mirror_feee_mb should be less than the free_mb to ensure the proper mirroring.
>> Power Limit option Controls the speed of rebalancing the data as and when remove / add disks to DiskGroup in ASM.
ALTER DISKGROUP DATA REBALANCE POWER 1;
A value between 1-11 is recommended (higher values consume more resources).
we can use up to 0-1024 value***** its depends on your system resource.
Example :
we have an ASM disk group named '+DATA' with multiple disks,
and we need to drop one disk ('DS8') safely.
Before removing a disk Need to check the DiskGroup status and used/free space.
How to Check the existing disks in the DiskGroup
set lines 200
col name format a20
col path format a28
col total_mb format 99999
col free_mb format 99999
SQL> SELECT GROUP_NUMBER, NAME, PATH, TOTAL_MB, FREE_MB, HEADER_STATUS, MOUNT_STATUS, STATE FROM V$ASM_DISK WHERE GROUP_NUMBER = (SELECT GROUP_NUMBER FROM V$ASM_DISKGROUP WHERE NAME = 'DATA');
GROUP_NUMBER NAME PATH TOTAL_MB FREE_MB HEADER_STATU MOUNT_S STATE
------------ -------------------- ---------------------------- -------- ------- ------------ ------- --------
2 DS8 /dev/oracleasm/disks/DS8 1020 848 MEMBER CACHED NORMAL
2 DATA_0000 /dev/oracleasm/disks/DATADIS 20476 17432 MEMBER CACHED NORMAL
Next Check Redundancy Type & Disk Rebalancing Power
SQL> SELECT NAME, TYPE, STATE, TOTAL_MB, FREE_MB, REQUIRED_MIRROR_FREE_MB, USABLE_FILE_MB FROM V$ASM_DISKGROUP WHERE NAME = 'DATA';
NAME TYPE STATE TOTAL_MB FREE_MB REQUIRED_MIRROR_FREE_MB USABLE_FILE_MB
-------------------- ------ ----------- -------- ------- ----------------------- --------------
DATA EXTERN MOUNTED 21496 18280 0 18280
Make sure there is sufficient free space in the disk group before dropping the disk.
SQL> SELECT NAME, FREE_MB, REQUIRED_MIRROR_FREE_MB FROM V$ASM_DISKGROUP WHERE NAME = 'DATA';
NAME FREE_MB REQUIRED_MIRROR_FREE_MB
-------------------- ------- -----------------------
DATA 18280 0
Drop the Disk from ASM Disk Group :
Run the ALTER DISKGROUP DROP DISK command with REBALANCE to ensure data is redistributed across remaining disks.
SQL> SELECT GROUP_NUMBER, NAME, PATH, TOTAL_MB, FREE_MB, HEADER_STATUS, MOUNT_STATUS, STATE FROM V$ASM_DISK WHERE GROUP_NUMBER = (SELECT GROUP_NUMBER FROM V$ASM_DISKGROUP WHERE NAME = 'DATA');
GROUP_NUMBER NAME PATH TOTAL_MB FREE_MB HEADER_STATU MOUNT_S STATE
------------ -------------------- ---------------------------- -------- ------- ------------ ------- --------
2 DATA_0000 /dev/oracleasm/disks/DATADIS 20476 17272 MEMBER CACHED NORMAL
K
extra /alternative options :
ALTER DISKGROUP DATA_DG DROP DISK DS1;
DROP DISKGROUP DATA_DG INCLUDING CONTENTS;
Monitor the Rebalancing Process
Rebalancing ensures that the data is safely redistributed before the disk is removed.
Parallelly Check the rebalancing status
SQL> SELECT GROUP_NUMBER, OPERATION, STATE, EST_MINUTES FROM V$ASM_OPERATION;
no rows selected
Note : we have to Wait for the 'STATE' to show 'COMPLETED'.
Cross Check the DiskGroup After Rebalancing
SQL> SQL> SELECT NAME, TOTAL_MB, FREE_MB FROM V$ASM_DISKGROUP WHERE NAME = 'DATA';
NAME TOTAL_MB FREE_MB
-------------------- -------- -------
DATA 20476 17272
Note: Ensure there is no data loss and the disk group is still functioning properly.
Confirm Disk Removal from ASM
After rebalancing completes, verify that the disk has been removed.
SQL> SELECT NAME, PATH FROM V$ASM_DISK WHERE GROUP_NUMBER = (SELECT GROUP_NUMBER FROM V$ASM_DISKGROUP WHERE NAME = 'DATA');
NAME PATH
-------------------- ----------------------------
DATA_0000 /dev/oracleasm/disks/DATADISK
Note: If the disk is no longer listed, it has been successfully removed.
Decommission the Physical Disk:: its an optional step
If the disk is no longer needed for ASM, you can manually remove it.
Check Physical Disk Name : ready to use 2nd time ...
SELECT DISK_NUMBER, NAME, PATH FROM V$ASM_DISK WHERE HEADER_STATUS = 'FORMER';
SQL> SELECT DISK_NUMBER, NAME, PATH FROM V$ASM_DISK WHERE HEADER_STATUS = 'FORMER';
DISK_NUMBER NAME PATH
----------- -------------------- ----------------------------
1 /dev/oracleasm/disks/DS10
0 /dev/oracleasm/disks/DS8
>> disk with HEADER_STATUS 'FORMER' >>it is no longer part of an ASM disk group.
Delete the ASM Header on the Disk if you want to use that for different tasks.
If you plan to reuse the disk for another ASM disk group, clear its ASM metadata:
dd if=/dev/zero of=/dev/sdX bs=1024 count=100 or
asmcmd afd_label <disk> --init
Remove the Disk from ASM Configuration
oracleasm deletedisk DS8
Verify Database Functionality at Last step ::
After removing the disk, check the database performance and logs to confirm there is no impact:
SQL> SELECT * FROM V$ASM_DISKGROUP WHERE NAME = 'DATA';
GROUP_NUMBER NAME SECTOR_SIZE LOGICAL_SECTOR_SIZE BLOCK_SIZE ALLOCATION_UNIT_SIZE STATE TYPE TOTAL_MB FREE_MB HOT_USED_MB COLD_USED_MB REQUIRED_MIRROR_FREE_MB USABLE_FILE_MB
------------ -------------------- ----------- ------------------- ---------- -------------------- ----------- ------ -------- ------- ----------- ------------ ----------------------- --------------
OFFLINE_DISKS COMPATIBILITY DATABASE_COMPATIBILITY V CON_ID
------------- ------------------------------------------------------------ ------------------------------------------------------------ - ----------
2 DATA 512 512 4096 4194304 MOUNTED EXTERN 20476 17272 0 3204 0 17272
0 19.0.0.0.0 10.1.0.0.0 Y 0
Note: this Lab activity tested in my lab, you can practice in your dev/poc instance before use in the real time business databases / environment.
Thanks,
Srini