Project

General

Profile

Feature #18205

Updated by Ward Vandewege over 2 years ago

 
 This applies to cloud installations only.  

 Add a data structure to the container record that contains: 

 * the total cost of a container (if the container is running, the cost up to this point in time) 
 * the current hourly cost of that container, if it is not complete yet 

 This data structure would be populated at a configurable `ContainerCostUpdateInterval` (default every 2 minutes?) for running containers, as well as immediately at the start and the end of a container. 

 For AWS spot instances, we would have a goroutine that stores the relevant spot price history (DescribeSpotPriceHistory API call) for the configured availability zone in the database. Awkwardly we currently derive the availability zone from `Containers/CloudVMs/DriverParameters/SubnetID`, perhaps we should add an explicit value in the config file). The history would only be stored up to the oldest running job (and maybe while nothing is running, up to the current point in time?). It could be refreshed on the same frequency as `ContainerCostUpdateInterval`, but ideally we would stop updating when nothing is running. 

 For regular AWS instances, we can get the hourly price for all node types in our AZ, API call TBD. This could be updated once a day (configurable?). 

 For both spot and regular AWS instances, we also need to account for the cost of any extra attached EBS storage. API call TBD. 

 Follow on work, outside the scope of this ticket: 
 * Azure support for regular and spot instances 
 * Costanalyzer support to use this cost data 
 * Workbench2 support to show this cost data live

Back