Active IQ Unified Manager Discussions

resize primary volume and the mirrored volume

MPERIYAK
6,228 Views

I am just starting my venture in WFA 2.1 and it seems exciting. 2 questions

should I know powershell programming to use WFA  

and

My first project is

if a vol reaches 90% full, increase by certain % and at the same time increase the corresponsing snapmirror target volume also by the same %

is this even possible. I dont see a canned workflow for this?

Muru

1 ACCEPTED SOLUTION

kandati
6,228 Views

Hi,

As I mentioned, once you select the ArrayIP then it will list only the primary volumes in it, the volumes which has mirror relationships. you can see the UserInput query which is listing it.

Are you facing the "unexpected error" consistently..?

1)in the resize volume can we just put the size increase we need instead of the target size

Ans: Yes, you can just provide the value like, +20 or -20

2)also can we check the aggregate free space before increasing the volume.

Ans: Yes, for that you have to enhance UserInput query, go to Workflow edit view-> Settings->UserInputs->double click on PrimaryVolume-> Click on "View or edit the SQL query" link, and replace with the below query.

select

    storage.volume.name,

    storage.volume.size_mb,

    storage.aggregate.available_size_mb

from

    storage.volume,

    storage.array,

    storage.vsm,

    storage.aggregate

where

    storage.array.id = storage.volume.array_id

    AND storage.array.ip = '${PrimaryArrayIP}'

    and storage.volume.id= storage.vsm.volume_id

    and storage.aggregate.id = storage.volume.aggregate_id

GROUP by

    storage.volume.name

This workflow currently not listing secondary volumes while filling the fields. But, we can do that also to list all the secondary volumes and their aggregates available capacity etc, for the selected PrimaryVolume..!

Warm Regards

Sivaprasad K

View solution in original post

12 REPLIES 12
Public