Interface CostCalculator
public interface CostCalculator
- Author:
- ogronnesby
-
Method Summary
Modifier and TypeMethodDescriptiondoublecalculate(com.yahoo.config.provision.NodeResources resources) Estimate the cost for the given resourcescalculate(ResourceUsage usage) Calculate the cost for the given usageCPU unit priceDisk unit priceGPU unit priceMemory unit price
-
Method Details
-
calculate
Calculate the cost for the given usage -
calculate
double calculate(com.yahoo.config.provision.NodeResources resources) Estimate the cost for the given resources -
getCpuPrice
BigDecimal getCpuPrice()CPU unit price -
getMemoryPrice
BigDecimal getMemoryPrice()Memory unit price -
getDiskPrice
BigDecimal getDiskPrice()Disk unit price -
getGpuPrice
BigDecimal getGpuPrice()GPU unit price
-