- 论坛徽章:
- 0
|
adic stornext file system
Windows NT/2000/XP/2003
SUN Solaris 7/8/9
SGI IRIX 6.5
Linux (Redhat and SuSE )
IBM AIX 5.2L
HP-UX
其一个文件系统配置结构如下:
# Globals Defaulted
AllocationStrategy Round ##(stripeGroup之间按Round、fill、balance三种方式写数据)
[DiskType VideoDrive] ## raid lun 的类型
Sectors XXXXXXXX
SectorSize 512 ## 根据存储支持数据块大小(512. 1024.4096)
[Disk CvfsDisk0] ## lun0
Status UP
Type VideoDrive
[Disk CvfsDisk1] ## lun 1
Status UP
Type VideoDrive
# 定义磁盘组(软件RAID),可以多个LUN绑定成一个逻辑上大的LUN
# ****************************************************************************
[stripeGroup data]
Status UP
Read Enabled
Write Enabled
StripeBreadth 256K ##可以调整的条块化结构
MultiPathMethod Rotate
Node CvfsDisk0 0
Node CvfsDisk1 1
或者改为下面结构 (两个依据性能和应用不同而设定)
[stripeGroup data1]
Status UP
Read Enabled
Write Enabled
StripeBreadth 256K
MultiPathMethod Rotate
Node CvfsDisk0 0
[stripeGroup data2]
Status UP
Read Enabled
Write Enabled
StripeBreadth 256K
MultiPathMethod Rotate
Node CvfsDisk1 0 |
|