Unsolved
This post is more than 5 years old
1 Message
0
492
December 25th, 2011 08:00
How to allocate 200 GB lun in DMX3&4
Hi,
I would need allocate 200 GB to a Linux server . Please let me know what are the stepe of lun allocation
As a concept i know that we need to create a device and map to any of the FA director ports (say dir 7a -p 0, dir 10 a - p 0)
and then mask the device to server
I am looking for the following steps...
1. How to create a hyper lun , do i need to execute the command using symconfigure or is there any other command ?
2. How to create a meta lun,do i need to execute the command using symconfigure or is there any other command ?
3. How to create a Meta Lun , whats the meaning of stipped lun and concatinate lun ?, do we create the meta lun by executing with same
symconfigure command
Your quick response is appreciable .Please let me know at the earliest ?
Regards,
Zakeer.
dynamox
9 Legend
•
20.4K Posts
1
December 25th, 2011 21:00
1) Do you need to create new symdevices ? Maybe system has existing "un-used" devices that could be used to build your meta device. To list un-used devices:
symdev list -sid 123 -noport
if you must build new devices, the syntax is pretty simple, create a file that contains similar line:
create dev count=256,size=18414,emulation=FBA,config=RAID-5,data_member_count=7,disk_group=0;
in the example i am creating 256 devices, they are ~17G in size (GB = Cylinders * 15 * 128 * 512 divided by 1024 * 1024 * 1024), emulation FBA (for open systems), RAID-5 7+1 configuration. Run symconfigure
symconfigure -sid 123 -f commit
2) To build meta devices you will need to find (build) devices that are of the same configuration (emulation, size, protection).
form meta from dev 14E9, config=striped, stripe_size=1920;
add dev 14EA to meta 14E9;
add dev 14EB to meta 14E9;
add dev 14EC to meta 14E9;
add dev 14ED to meta 14E9;
symconfigure -sid 123 -f commit
in this example i am building a meta with 5 members, it can be a striped meta or a concatenated meta.
3)
◆ Concatenated metavolumes — Organize addresses for the first byte of data at the
beginning of the first volume, and continue sequentially to the end of the volume.
Data is written sequentially, beginning with the first byte.
◆ Striped metavolumes — Organize addresses sequentially, by using addresses that
are interleaved between hypervolumes.
Data striping benefits configurations with random reads by avoiding stacking
multiple reads on a single spindle and director. Data striping creates a large
metavolume, but balances the I/O activity between the drives and the Symmetrix
system directors.