web-dev-qa-db-ja.com

記憶域スペースダイレクトのガイドライン

最近WS2016を導入しましたDC 4x DL380 G7にPoCの目的で使用します。各サーバーには4x 300GB 10K SASドライブがあり、いくつかのIntel SSDも持っています私の主な目的は、さまざまなストレージレプリカの「モード」をテストし、ストレージスペースダイレクトの上にスケールアウトファイルサーバーの役割を展開することです。

約1か月前、私は2ノードの記憶域スペースダイレクトを別のハードウェア構成(2つのSupermicroサーバー)に展開するのに苦労しました。正直なところ、インストールプロセスは「単純明快」ではありませんでした。 WinRMに関する問題、「-Enable-ClusterS2D」を試行する際の「サポートされていないバスタイプ」エラー、および後で新しい階層化スペースを作成しようとしたときにいくつかの問題がありました。

基本的に、Powershellを使用して4ノード環境で記憶域スペースダイレクトをセットアップする方法に関する最新のガイダンスを探しています。さまざまな回復力設定をテストしたいので、回復力タイプは重要ではありません。

ご協力ありがとうございました!

12
Mwilliams

簡単に言えば、展開シーケンスは次のようになります。

  1. 必要なWSの役割と機能をデプロイする
  2. フェールオーバークラスターの検証
  3. フェールオーバークラスターの作成
  4. 記憶域スペースダイレクトを有効にする

-EnableStorageS2D

  1. ストレージプールを作成して構成する

入力例:

New-StoragePool -StorageSubSystemName #CLUSTER_NAME# -FriendlyName #POOL_NAME# -WriteCacheSizeDefault 0 -ProvisioningTypeDefault Fixed -ResiliencySettingNameDefault Simple -PhysicalDisk (Get-StorageSubSystem -Name #CLUSTER_NAME# | Get-PhysicalDisk)

  1. 仮想ディスクを作成して構成する

入力例:

New-Volume -StoragePoolFriendlyName #POOL_NAME# -FriendlyName #VD_NAME# -PhysicalDiskRedundancy 2 -FileSystem CSVFS_REFS –Size 100GB

  1. SOFSを展開する
  2. ファイル共有を作成する以上です。

ここに私が役に立ったと思う2つの記事があります:

Link1 https://www.starwindsoftware.com/blog/Microsoft-storage-spaces-direct-4-node-setup-2

Link2 https://technet.Microsoft.com/en-us/windows-server-docs/storage/storage-spaces/hyper-converged-solution-using-storage-spaces-direct

11
Net Runner

記憶域スペースダイレクトを評価するための現在のスクリプト

# windows server installation
Install-WindowsFeature Hyper-V, Data-Center-Bridging, Failover-Clustering, RSAT-Clustering-Powershell, Hyper-V-PowerShell -IncludeManagementTools

# before creating cluster set correct MediaType for all disks
#note before setting MediaType disks have to be assigned to a Storage Pool which can be deleted right after setting
Get-Physicaldisk | where size -gt 506870912000 | Set-PhysicalDisk –MediaType HDD

# Create the cluster
New-Cluster -Name w16hyper -Node w16hyper1, w16hyper2, w16hyper3 -NoStorage -StaticAddress 192.168.2.100

# hack to use RAID cards as JBOD
(Get-Cluster).S2DBusTypes=0x100

Enable-ClusterStorageSpacesDirect -CacheState Disabled

Get-StorageSubSystem Cluster*
Get-StorageSubSystem Cluster* | Get-Volume

#statistics
Get-StorageSubSystem Cluster* | Get-StorageHealthReport

#jobs running on background (eg. rebuild)
Get-StorageJob | ? JobState -Eq Running

#status
Get-StoragePool S2D* | Get-PhysicalDisk | Group OperationalStatus -NoElement
Get-StoragePool S2D* | Get-PhysicalDisk | Sort Model, OperationalStatus

#get log info
Get-StorageSubSystem Cluster* | Debug-StorageSubSystem

Get-VirtualDisk
Get-PhysicalDisk -Usage Retired

#create new mirrored volume (survive 1 fail for 2node system, 2 simultaneous fails for more nodes)
New-Volume -FriendlyName "Volume A" -FileSystem CSVFS_ReFS -StoragePoolFriendlyName S* -Size 1TB

#create hybrid volume (mirror + parity) with recommended 10% mirror part size
New-Volume -FriendlyName "Volume A" -FileSystem CSVFS_ReFS -StoragePoolFriendlyName S* -StorageTierFriendlyNames Performance, Capacity -StorageTierSizes 100GB, 900GB

#cleanup (pool has to be deleted on each node)
Disable-ClusterStorageSpacesDirect
Get-StoragePool S2D* | Set-StoragePool -IsReadOnly $false
Get-StoragePool S2D* | Remove-StoragePool
4
Jan Zahradník