Book Image

Hyper-V Best Practices

By : Benedict Berger
Book Image

Hyper-V Best Practices

By: Benedict Berger

Overview of this book

Table of Contents (16 chapters)
Hyper-V Best Practices
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Storage Spaces and tiering


The best way to leverage a SOFS is to use Storage Spaces with storage tiering. Having JBODs with SSDs and HDDs connected to your SMB3 File Servers enables great I/O performance. Frequently read data will be cached on the SSDs and long-term data will be archived on the HDDs by default without the need for manual editing, which results in a great performance boost. Using the previously explained CSV, a cache can further improve read performance. Create a Storage Space with tiering through PowerShell.

The first step is to create a new storage pool:

$PhysicalDisks = Get-PhysicalDisk -CanPool $True
New-StoragePool -FriendlyName ElanityStor01 -StorageSubsystemFriendlyName "Storage Spaces*" -PhysicalDisks $PhysicalDisks

Set the SSD and HDD attributes as follows:

$tier_ssd = New-StorageTier -StoragePoolFriendlyName ElanityStor01 -FriendlyName SSD_TIER -MediaType SSD 

$tier_hdd = New-StorageTier -StoragePoolFriendlyName ElanityStor01 -FriendlyName HDD_TIER -MediaType HDD...