So to complete my calculation based on my scenario:
Constants:
HOST_FOOTPRINT = 7100 MB
CAPACITY_DISK_FOOTPRINT = 160 MB (ALL_FLASH)
DISKGROUP_FIXED_FOOTPRINT = 1360 MB (ALL_FLASH) *
CACHE_DISK_FOOTPRINT = 20 MB (ALL_FLASH)
DISKGROUP_SCALABLE_FOOTPRINT = 0.5% of system memory (0.5% of system memory *1024)
To calculate the vSAN memory consumption footprint, the following equations are used:
vSANFootprint = HOST_FOOTPRINT + NumDiskGroups * DiskGroupFootprint
DiskGroupFootprint = DISKGROUP_FIXED_FOOTPRINT + DISKGROUP_SCALABLE_FOOTPRINT + CacheSize * CACHE_DISK_FOOTPRINT + NumCapacityDisks * CAPACITY_DISK_FOOTPRINT
My scenario:
I am trying to calculate vSAN overhead for a cluster of 4 nodes.
Each host has x12 36GB RDIMM Modules = 432GB per node or 1.72TB for a cluster of 4 nodes.
DISKGROUP_SCALABLE_FOOTPRINT = 1,72TB = 1720GB so 0,5% of 1720 = 8.6*1024 = 8806
DiskGroupFootprint = 1360 + 8806 + 800 * 20 + 2 * 160 = 26.486
vSANFootprint = 7100 + 1 *26.486 = 7126MB
Just wanted to make 100% sure, thanks a lot!