Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hyper-V Best Practices

You're reading from  Hyper-V Best Practices

Product type Book
Published in Nov 2014
Publisher Packt
ISBN-13 9781782176091
Pages 172 pages
Edition 1st Edition
Languages
Author (1):
Benedict Berger Benedict Berger
Profile icon Benedict Berger
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 $15.99/month. Cancel anytime