Please enter search query.
Search <book_title>...
Veritas InfoScale™ 7.4 Solutions Guide - Solaris
Last Published:
2019-07-18
Product(s):
InfoScale & Storage Foundation (7.4)
Platform: Solaris
- Section I. Introducing Veritas InfoScale
- Section II. Solutions for Veritas InfoScale products
- Section III. Improving database performance
- Overview of database accelerators
- Improving database performance with Veritas Quick I/O
- About Quick I/O
- Improving database performance with Veritas Cached Quick I/O
- Improving database performance with Veritas Concurrent I/O
- Section IV. Using point-in-time copies
- Understanding point-in-time copy methods
- Backing up and recovering
- Preserving multiple point-in-time copies
- Online database backups
- Backing up on an off-host cluster file system
- Database recovery using Storage Checkpoints
- Backing up and recovering in a NetBackup environment
- Off-host processing
- Creating and refreshing test environments
- Creating point-in-time copies of files
- Section V. Maximizing storage utilization
- Optimizing storage tiering with SmartTier
- Optimizing storage with Flexible Storage Sharing
- Optimizing storage tiering with SmartTier
- Section VI. Migrating data
- Understanding data migration
- Offline migration from Solaris Volume Manager to Veritas Volume Manager
- How Solaris Volume Manager objects are mapped to VxVM objects
- Overview of the conversion process
- Planning the conversion
- Preparing a Solaris Volume Manager configuration for conversion
- Setting up a Solaris Volume Manager configuration for conversion
- Converting from the Solaris Volume Manager software to VxVM
- Post conversion tasks
- Online migration of a native file system to the VxFS file system
- Migrating a source file system to the VxFS file system over NFS v3
- VxFS features not available during online migration
- Migrating storage arrays
- Migrating data between platforms
- Overview of the Cross-Platform Data Sharing (CDS) feature
- CDS disk format and disk groups
- Setting up your system to use Cross-platform Data Sharing (CDS)
- Maintaining your system
- Disk tasks
- Disk group tasks
- Displaying information
- File system considerations
- Specifying the migration target
- Using the fscdsadm command
- Maintaining the list of target operating systems
- Migrating a file system on an ongoing basis
- Converting the byte order of a file system
- Migrating from Oracle ASM to Veritas File System
- Section VII. Veritas InfoScale 4K sector device support solution
Setting up a filesystem for storage tiering with SmartTier
In the use case examples, the following circumstances apply:
The database containers are in the file system /DBdata
The database archived logs are in the file system /DBarch
To create required filesystems for SmartTier
- List the disks:
# vxdisk list
DEVICE TYPE DISK GROUP STATUS fas30700_0 auto:cdsdisk fas30700_0 --- online thin fas30700_1 auto:cdsdisk fas30700_1 --- online thin fas30700_2 auto:cdsdisk fas30700_2 --- online thin fas30700_3 auto:cdsdisk fas30700_3 --- online thin fas30700_4 auto:cdsdisk fas30700_4 --- online thin fas30700_5 auto:cdsdisk fas30700_5 --- online thin fas30700_6 auto:cdsdisk fas30700_6 --- online thin fas30700_7 auto:cdsdisk fas30700_7 --- online thin fas30700_8 auto:cdsdisk fas30700_8 --- online thin
Assume there are 3 LUNs on each tier.
- Create the disk group.
# vxdg init DBdg fas30700_0 fas30700_1 fas30700_2 \ fas30700_3 fas30700_4 fas30700_5 fas30700_6 fas30700_7 \ fas30700_8
- Create the volumes datavol and archvol.
# vxassist -g DBdg make datavol 200G alloc=fas30700_3,\ fas30700_4,fas30700_5 # vxassist -g DBdg make archvol 50G alloc= fas30700_3,\ fas30700_4,fas30700_5
Tag datavol and archvol as tier-1.
# vxassist -g DBdg settag datavol vxfs.placement_class.tier1 # vxassist -g DBdg settag archvol vxfs.placement_class.tier1
- Create the Tier-0 volumes.
# vxassist -g DBdg make tier0_vol1 50G alloc= fas30700_0,\ fas30700_1,fas30700_2 # vxassist -g DBdg make tier0_vol2 50G alloc= fas30700_0,\ fas30700_1,fas30700_2 # vxassist -g DBdg settag tier0_vol1 vxfs.placement_class.tier0 # vxassist -g DBdg settag tier0_vol2 vxfs.placement_class.tier0
- Create the Tier-2 volumes.
# vxassist -g DBdg make tier2_vol1 50G alloc= fas30700_6,\ fas30700_7,fas30700_8 # vxassist -g DBdg make tier2_vol2 50G alloc= fas30700_6,\ fas30700_7,fas30700_8 # vxassist -g DBdg settag tier2_vol1 vxfs.placement_class.tier2 # vxassist -g DBdg settag tier2_vol2 vxfs.placement_class.tier2
- Convert datavol and archvol to a volume set.
# vxvset -g DBdg make datavol_mvfs datavol # vxvset -g DBdg make archvol_mvfs archvol
- Add the volumes Tier-0 and Tier-2 to datavol_mvfs.
# vxvset -g DBdg addvol datavol_mvfs tier0_vol1 # vxvset -g DBdg addvol datavol_mvfs tier2_vol1
- Add the volume Tier-2 to archvol_mvfs
# vxvset -g DBdg archvol_mvfs tier2_vol2
- Make the file system and mount datavol_mvfs and archvol_mvfs.
# mkfs -F vxfs /dev/vx/rdsk/DBdg/datavol_mvfs
- Mount the DBdata file system
# mount -F vxfs /dev/vx/dsk/DBdg/datavol_mvfs /DBdata
- Mount the DBarch filesystem
# mount -F vxfs /dev/vx/dsk/DBdg/archvol_mvfs /DBarch
- Migrate the database into the newly created, SmartTier-ready file system. You can migrate the database either by restoring from backup or copying appropriate files into respective filesystems.
See the database documentation for more information.