ONTAP 9.13

to Japanese version

Resize a LUN

You can increase or decrease the size of a LUN.

Solaris LUNs cannot be resized.

Increase the size of a LUN

The size to which you can increase your LUN varies depending upon your version of ONTAP.

ONTAP version

Maximum LUN size

ONTAP 9.12.1P2 and later

128 TB

ONTAP 9.8 and later

  • 128 TB for All-Flash SAN Array (ASA) platforms

  • 16 TB for non-ASA platforms

ONTAP 9.7

16TB

You do not need to take the LUN offline to increase the size. However, after you have increased the size, you must rescan the LUN on the host for the host to recognize the change in size.

See the Command Reference page for the lun resize command for more information about resizing a LUN.

Example 1. Steps
ONTAP System Manager

Increase the size of a LUN with ONTAP System Manager (9.7 and later).

  1. In ONTAP System Manager, click Storage > LUNs.

  2. Click Kabob icon and select Edit.

  3. Under Storage and Optimization increase the size of the LUN and Save.

CLI

Increase the size of a LUN with the ONTAP CLI.

  1. Increase the size of the LUN:

    lun resize -vserver <SVM_name> -volume <volume_name> -lun <lun_name> -size <lun_size>

  2. Verify the increased LUN size:

    lun show -vserver <vserver_name>

    ONTAP operations round down the actual maximum size of the LUN so it is slightly less than the expected value. Also, actual LUN size might vary slightly based on the OS type of the LUN. To obtain the exact resized value, run the following commands in advanced mode:

    set -unit B

    lun show -fields max-resize-size -volume volume_name -lun lun_name

  3. Rescan the LUN on the host.

  4. Follow your host documentation to make the newly created LUN size visible to the host file system.

Decrease the size of a LUN

Before you decrease the size of a LUN, the host needs to migrate the blocks containing the LUN data into the boundary of the smaller LUN size. You should use a tool such as SnapCenter to ensure that the LUN is properly decreased without truncating blocks containing LUN data. Manually decreasing the size of your LUN is not recommended.

After you decrease the size of your LUN, ONTAP automatically notifies the initiator that the LUN size has decreased. However, additional steps might be required on your host for the host to recognize the new LUN size. Check your host documentation for specific information about decreasing the size of the host file structure.

Top of Page