<data:blog.pageTitle/>

This Page

has moved to a new address:

https://vmvirtual.blog

Sorry for the inconvenience…

Redirection provided by Blogger to WordPress Migration Service
BIOLNX

BIOLNX

mercoledì 12 febbraio 2020

New VMware’s per-CPU Pricing Model

In the start of February 2020 VMware has annunced an important update her per-CPU pricing model.
We can summarize it all in this image:


This change start on April 2, 2020.

All information in this link 

Etichette: , , , ,

lunedì 7 ottobre 2019

vCPU:pCPU ratio

From official doc VMware:

      the following vCPU:pCPU ratios can be considered a good starting point for a design:
o1:1 to 3:1 is not typically an issue
oWith 3:1 to 5:1, you might begin to see performance degradation
o6:1 or greater is often going to cause a significant problem for VM performance

I have found this script in VMware Community Site:


Foreach($esx in Get-VMHost){
    $vCPU = Get-VM -Location $esx | Measure-Object -Property NumCpu -Sum | select -ExpandProperty Sum
    $esx | Select Name,@{N='pCPU';E={$_.NumCpu}},
        @{N='vCPU';E={$vCPU}},
        @{N='Ratio';E={[math]::Round($vCPU/$_.NumCpu,1)}}
}






Output is:

Name            pCPU vCPU Ratio
----            ---- ---- -----
phesx01.pre.lab   16   26   1.6

Etichette: , , , ,

lunedì 19 agosto 2013

Show model, cpu and core of power 740


root@nim02:/# lsattr -El sys0 -a modelname
modelname IBM,8205-E6B Machine name False

root@nim02:/#  lparstat -i|grep ^Active\ Phys
Active Physical CPUs in system             : 6

root@nim02:/#  lscfg -vp|grep WAY
      6-WAY  PROC CUOD:

Etichette: , , , , ,