Search in sources :

Example 1 with Ec2PriceDto

use of org.finra.herd.model.dto.Ec2PriceDto in project herd by FINRAOS.

the class EmrPricingHelperTest method createSimpleEmrClusterPrice.

private EmrClusterPriceDto createSimpleEmrClusterPrice(final String availabilityZone, final BigDecimal instancePrice) {
    EmrClusterPriceDto emrClusterPriceDto = new EmrClusterPriceDto();
    emrClusterPriceDto.setAvailabilityZone(availabilityZone);
    if (instancePrice != null) {
        Ec2PriceDto corePrice = new Ec2PriceDto();
        corePrice.setInstanceCount(1);
        corePrice.setInstancePrice(instancePrice);
        emrClusterPriceDto.setCorePrice(corePrice);
    }
    return emrClusterPriceDto;
}
Also used : Ec2PriceDto(org.finra.herd.model.dto.Ec2PriceDto) EmrClusterPriceDto(org.finra.herd.model.dto.EmrClusterPriceDto)

Example 2 with Ec2PriceDto

use of org.finra.herd.model.dto.Ec2PriceDto in project herd by FINRAOS.

the class EmrPricingHelper method updateEmrClusterDefinitionWithBestPrice.

/**
 * Finds the best price for each master and core instances based on the subnets and master and core instance search parameters given in the definition.
 * <p/>
 * The results of the findings are used to update the given definition.
 * <p/>
 * If the instance's instanceSpotPrice is set, the instance definition will keep that value. If the instance's instanceMaxSearchPrice is set, the best price
 * will be found. If the found price is spot, the instanceSpotPrice will be set to the value of instanceMaxSearchPrice. If the found price is on-demand, the
 * instanceSpotPrice will be removed. The definition's subnetId will be set to the particular subnet which the best price is found. The value will always be
 * replaced by a single subnet ID.
 * <p/>
 * The definition's instanceMaxSearchPrice and instanceOnDemandThreshold will be removed by this operation.
 *
 * @param emrClusterAlternateKeyDto EMR cluster alternate key
 * @param emrClusterDefinition The EMR cluster definition with search criteria, and the definition that will be updated
 * @param awsParamsDto the AWS related parameters for access/secret keys and proxy details
 */
public void updateEmrClusterDefinitionWithBestPrice(EmrClusterAlternateKeyDto emrClusterAlternateKeyDto, EmrClusterDefinition emrClusterDefinition, AwsParamsDto awsParamsDto) {
    EmrVpcPricingState emrVpcPricingState = new EmrVpcPricingState();
    // Get total count of instances this definition will attempt to create
    int totalInstanceCount = getTotalInstanceCount(emrClusterDefinition);
    // Get the subnet information
    List<Subnet> subnets = getSubnets(emrClusterDefinition, awsParamsDto);
    for (Subnet subnet : subnets) {
        emrVpcPricingState.getSubnetAvailableIpAddressCounts().put(subnet.getSubnetId(), subnet.getAvailableIpAddressCount());
    }
    // Filter out subnets with not enough available IPs
    removeSubnetsWithAvailableIpsLessThan(subnets, totalInstanceCount);
    if (subnets.isEmpty()) {
        LOGGER.info(String.format("Insufficient IP availability. namespace=\"%s\" emrClusterDefinitionName=\"%s\" emrClusterName=\"%s\" " + "totalRequestedInstanceCount=%s emrVpcPricingState=%s", emrClusterAlternateKeyDto.getNamespace(), emrClusterAlternateKeyDto.getEmrClusterDefinitionName(), emrClusterAlternateKeyDto.getEmrClusterName(), totalInstanceCount, jsonHelper.objectToJson(emrVpcPricingState)));
        throw new ObjectNotFoundException(String.format("There are no subnets in the current VPC which have sufficient IP addresses available to run your " + "clusters. Try expanding the list of subnets or try again later. requestedInstanceCount=%s%n%s", totalInstanceCount, emrVpcPricingStateFormatter.format(emrVpcPricingState)));
    }
    // Best prices are accumulated in this list
    List<EmrClusterPriceDto> emrClusterPrices = new ArrayList<>();
    InstanceDefinition masterInstanceDefinition = getMasterInstanceDefinition(emrClusterDefinition);
    InstanceDefinition coreInstanceDefinition = getCoreInstanceDefinition(emrClusterDefinition);
    InstanceDefinition taskInstanceDefinition = getTaskInstanceDefinition(emrClusterDefinition);
    Set<String> requestedInstanceTypes = new HashSet<>();
    String masterInstanceType = masterInstanceDefinition.getInstanceType();
    requestedInstanceTypes.add(masterInstanceType);
    if (coreInstanceDefinition != null) {
        String coreInstanceType = coreInstanceDefinition.getInstanceType();
        requestedInstanceTypes.add(coreInstanceType);
    }
    if (taskInstanceDefinition != null) {
        String taskInstanceType = taskInstanceDefinition.getInstanceType();
        requestedInstanceTypes.add(taskInstanceType);
    }
    // Get AZs for the subnets
    for (AvailabilityZone availabilityZone : getAvailabilityZones(subnets, awsParamsDto)) {
        // Create a mapping of instance types to prices for more efficient, in-memory lookup
        // This method also validates that the given instance types are real instance types supported by AWS.
        Map<String, BigDecimal> instanceTypeOnDemandPrices = getInstanceTypeOnDemandPrices(availabilityZone, requestedInstanceTypes);
        // Create a mapping of instance types to prices for more efficient, in-memory lookup
        // When AWS does not return any spot price history for an instance type in an availability zone, the algorithm will not use that availability zone
        // when selecting the lowest price.
        Map<String, BigDecimal> instanceTypeSpotPrices = getInstanceTypeSpotPrices(availabilityZone, requestedInstanceTypes, awsParamsDto);
        emrVpcPricingState.getSpotPricesPerAvailabilityZone().put(availabilityZone.getZoneName(), instanceTypeSpotPrices);
        emrVpcPricingState.getOnDemandPricesPerAvailabilityZone().put(availabilityZone.getZoneName(), instanceTypeOnDemandPrices);
        // Get and compare master price
        BigDecimal masterSpotPrice = instanceTypeSpotPrices.get(masterInstanceType);
        BigDecimal masterOnDemandPrice = instanceTypeOnDemandPrices.get(masterInstanceType);
        Ec2PriceDto masterPrice = getBestInstancePrice(masterSpotPrice, masterOnDemandPrice, masterInstanceDefinition);
        // Get and compare core price
        Ec2PriceDto corePrice = null;
        if (coreInstanceDefinition != null) {
            String coreInstanceType = coreInstanceDefinition.getInstanceType();
            BigDecimal coreSpotPrice = instanceTypeSpotPrices.get(coreInstanceType);
            BigDecimal coreOnDemandPrice = instanceTypeOnDemandPrices.get(coreInstanceType);
            corePrice = getBestInstancePrice(coreSpotPrice, coreOnDemandPrice, coreInstanceDefinition);
        }
        // Get and compare task price
        Ec2PriceDto taskPrice = null;
        if (taskInstanceDefinition != null) {
            String taskInstanceType = taskInstanceDefinition.getInstanceType();
            BigDecimal taskSpotPrice = instanceTypeSpotPrices.get(taskInstanceType);
            BigDecimal taskOnDemandPrice = instanceTypeOnDemandPrices.get(taskInstanceType);
            taskPrice = getBestInstancePrice(taskSpotPrice, taskOnDemandPrice, taskInstanceDefinition);
        }
        // If prices were found
        if (masterPrice != null && (coreInstanceDefinition == null || corePrice != null) && (taskInstanceDefinition == null || taskPrice != null)) {
            // Add the pricing result to the result list
            emrClusterPrices.add(createEmrClusterPrice(availabilityZone, masterPrice, corePrice, taskPrice));
        }
    // If prices were not found for either master or core, this AZ cannot satisfy the search criteria. Ignore this AZ.
    }
    if (emrClusterPrices.isEmpty()) {
        LOGGER.info(String.format("No subnets which satisfied the best price search criteria. namespace=\"%s\" emrClusterDefinitionName=\"%s\" " + "emrClusterName=\"%s\" emrVpcPricingState=%s", emrClusterAlternateKeyDto.getNamespace(), emrClusterAlternateKeyDto.getEmrClusterDefinitionName(), emrClusterAlternateKeyDto.getEmrClusterName(), jsonHelper.objectToJson(emrVpcPricingState)));
        throw new ObjectNotFoundException(String.format("There were no subnets which satisfied your best price search criteria. If you explicitly opted to use spot EC2 instances, please confirm " + "that your instance types support spot pricing. Otherwise, try setting the max price or the on-demand threshold to a higher value.%n%s", emrVpcPricingStateFormatter.format(emrVpcPricingState)));
    }
    // Find the best prices from the result list
    EmrClusterPriceDto bestEmrClusterPrice = getEmrClusterPriceWithLowestCoreInstancePrice(emrClusterPrices);
    // Find the best subnet among the best AZ's
    Subnet bestEmrClusterSubnet = getBestSubnetForAvailabilityZone(bestEmrClusterPrice.getAvailabilityZone(), subnets);
    // Update the definition with the new calculated values
    updateInstanceDefinitionsWithBestPrice(emrClusterDefinition, bestEmrClusterSubnet, bestEmrClusterPrice);
}
Also used : InstanceDefinition(org.finra.herd.model.api.xml.InstanceDefinition) MasterInstanceDefinition(org.finra.herd.model.api.xml.MasterInstanceDefinition) EmrVpcPricingState(org.finra.herd.model.dto.EmrVpcPricingState) EmrClusterPriceDto(org.finra.herd.model.dto.EmrClusterPriceDto) ArrayList(java.util.ArrayList) AvailabilityZone(com.amazonaws.services.ec2.model.AvailabilityZone) BigDecimal(java.math.BigDecimal) Ec2PriceDto(org.finra.herd.model.dto.Ec2PriceDto) ObjectNotFoundException(org.finra.herd.model.ObjectNotFoundException) Subnet(com.amazonaws.services.ec2.model.Subnet) HashSet(java.util.HashSet)

Example 3 with Ec2PriceDto

use of org.finra.herd.model.dto.Ec2PriceDto in project herd by FINRAOS.

the class EmrPricingHelper method getBestInstancePrice.

/**
 * Returns the pricing information selected based on the given instance definition's search criteria.
 * <p/>
 * If the instance's spotBidPrice is set, returns spot price with spotBidPrice as the bid price. If the instance's maxSearchPrice is set, compares the given
 * spot, on-demand prices, maxSearchPrice, and optionally, onDemandThreshold to return the best result. This may return null if neither spot or on-demand
 * price matched the given criteria. If neither spotBidPrice or maxSearchPrice is set, returns the pricing as the on-demand price.
 *
 * @param spotPrice the current spot price for the instance type
 * @param onDemandPrice the current on-demand price for the instance type
 * @param instanceDefinition the instance definition containing search criteria
 *
 * @return the new {@link Ec2PriceDto} with the pricing information
 */
private Ec2PriceDto getBestInstancePrice(BigDecimal spotPrice, BigDecimal onDemandPrice, InstanceDefinition instanceDefinition) {
    LOGGER.debug("Starting... instanceType=\"{}\" instanceCount={} instanceSpotPrice={} instanceOnDemandPrice={}", instanceDefinition.getInstanceType(), instanceDefinition.getInstanceCount(), spotPrice, onDemandPrice);
    BigDecimal spotBidPrice = instanceDefinition.getInstanceSpotPrice();
    BigDecimal maxSearchPrice = instanceDefinition.getInstanceMaxSearchPrice();
    BigDecimal onDemandThreshold = instanceDefinition.getInstanceOnDemandThreshold();
    LOGGER.debug("instanceSpotBidPrice={} instanceMaxSearchPrice={} instanceOnDemandThreshold={}", spotBidPrice, maxSearchPrice, onDemandThreshold);
    Ec2PriceDto bestPrice;
    // spotBidPrice is set. User wants to explicitly use spot pricing
    if (spotBidPrice != null) {
        // Check if spot price was actually discovered.
        if (spotPrice != null) {
            bestPrice = new Ec2PriceDto();
            bestPrice.setSpotPricing(true);
            bestPrice.setInstancePrice(spotPrice);
            bestPrice.setInstanceCount(instanceDefinition.getInstanceCount());
            bestPrice.setBidPrice(spotBidPrice);
        } else // If not, error out.
        {
            bestPrice = null;
        }
    } else // spotBidPrice and maxSearchPrice are not specified. User explicitly wants to use on-demand
    if (maxSearchPrice == null) {
        bestPrice = new Ec2PriceDto();
        bestPrice.setSpotPricing(false);
        bestPrice.setInstanceCount(instanceDefinition.getInstanceCount());
        bestPrice.setInstancePrice(onDemandPrice);
    } else // maxSearchPrice is set. User wants system to find best price
    {
        // Default to on-demand
        bestPrice = new Ec2PriceDto();
        bestPrice.setSpotPricing(false);
        bestPrice.setInstanceCount(instanceDefinition.getInstanceCount());
        bestPrice.setInstancePrice(onDemandPrice);
        // If spot price is available, use it to compute the best price
        if (spotPrice != null) {
            // No on-demand threshold is equivalent to $0.00 threshold
            if (onDemandThreshold == null) {
                onDemandThreshold = BigDecimal.ZERO;
            }
            BigDecimal onDemandThresholdAbsolute = spotPrice.add(onDemandThreshold);
            // Pre-compute some flags for readability
            boolean isSpotBelowMax = spotPrice.compareTo(maxSearchPrice) <= 0;
            boolean isOnDemandBelowMax = onDemandPrice.compareTo(maxSearchPrice) <= 0;
            boolean isSpotBelowOnDemand = spotPrice.compareTo(onDemandPrice) < 0;
            boolean isThresholdBelowOnDemand = onDemandThresholdAbsolute.compareTo(onDemandPrice) < 0;
            // Should I use spot?
            if (isSpotBelowMax && isSpotBelowOnDemand && (isThresholdBelowOnDemand || !isOnDemandBelowMax)) {
                bestPrice.setSpotPricing(true);
                bestPrice.setInstancePrice(spotPrice);
                bestPrice.setBidPrice(maxSearchPrice);
            } else // Is there an error?
            if (!isOnDemandBelowMax) {
                bestPrice = null;
            }
        // Otherwise use on-demand
        } else // Spot price is not available, so only validate that on-demand price is below max search price
        {
            // Pre-compute some flags for readability
            boolean isOnDemandBelowMax = onDemandPrice.compareTo(maxSearchPrice) <= 0;
            // Error out if on-demand price is below max search price
            if (!isOnDemandBelowMax) {
                bestPrice = null;
            }
        // Otherwise use on-demand
        }
    }
    LOGGER.debug("End. instanceBestPrice={}", jsonHelper.objectToJson(bestPrice));
    return bestPrice;
}
Also used : Ec2PriceDto(org.finra.herd.model.dto.Ec2PriceDto) BigDecimal(java.math.BigDecimal)

Aggregations

Ec2PriceDto (org.finra.herd.model.dto.Ec2PriceDto)3 BigDecimal (java.math.BigDecimal)2 EmrClusterPriceDto (org.finra.herd.model.dto.EmrClusterPriceDto)2 AvailabilityZone (com.amazonaws.services.ec2.model.AvailabilityZone)1 Subnet (com.amazonaws.services.ec2.model.Subnet)1 ArrayList (java.util.ArrayList)1 HashSet (java.util.HashSet)1 ObjectNotFoundException (org.finra.herd.model.ObjectNotFoundException)1 InstanceDefinition (org.finra.herd.model.api.xml.InstanceDefinition)1 MasterInstanceDefinition (org.finra.herd.model.api.xml.MasterInstanceDefinition)1 EmrVpcPricingState (org.finra.herd.model.dto.EmrVpcPricingState)1