vantage-sh / ec2instances.info

Amazon EC2 instance comparison site
https://ec2instances.info
MIT License
5.07k stars 578 forks source link

m6a.xlarge show wrong on-demand price and wrong cpu speed #716

Open DrVanScott opened 9 months ago

DrVanScott commented 9 months ago

for region: eu-central-1 according to https://aws.amazon.com/ec2/pricing/on-demand/:

pricing: $0.207

according to aws ec2 describe-instance-types the correct values would be

cpu speed: 3.6

EverettBerry commented 8 months ago

@DrVanScott at first glance the pricing looks correct. The clock speed is off, which I am investigating. image

Hayato-Kosugi commented 8 months ago

@EverettBerry Not only the m6a family but also the c6a family seems to exhibit different clock speeds.

$ aws ec2 describe-instance-types --instance-types c6a.large --query "InstanceTypes[].{SustainedClockSpeedInGhz:ProcessorInfo.SustainedClockSpeedInGhz}"
[
    {
        "SustainedClockSpeedInGhz": 3.6
    }
]
$ aws ec2 describe-instance-types --instance-types m6a.large --query "InstanceTypes[].{SustainedClockSpeedInGhz:ProcessorInfo.SustainedClockSpeedInGhz}"
[
    {
        "SustainedClockSpeedInGhz": 3.6
    }
]
rishikhan commented 3 months ago

This looks correct now. Can this be closed?