Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hyper-V Best Practices

You're reading from   Hyper-V Best Practices Equip yourselves with the real-world configurations and best practices of Hyper-V to take full advantage of its virtualization capabilities

Arrow left icon
Product type Paperback
Published in Nov 2014
Publisher Packt
ISBN-13 9781782176091
Length 172 pages
Edition 1st Edition
Tools
Arrow right icon
Author (1):
Arrow left icon
Benedict Berger Benedict Berger
Author Profile Icon Benedict Berger
Benedict Berger
Arrow right icon
View More author details
Toc

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...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime