AllocationStrategy
- class aws_cdk.aws_batch.AllocationStrategy(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)
Bases:
Enum
Determines how this compute environment chooses instances to spawn.
- See:
- ExampleMetadata:
infused
Example:
# vpc: ec2.IVpc compute_env = batch.ManagedEc2EcsComputeEnvironment(self, "myEc2ComputeEnv", vpc=vpc, allocation_strategy=batch.AllocationStrategy.BEST_FIT )
Attributes
- BEST_FIT
Batch chooses the lowest-cost instance type that fits all the jobs in the queue.
If instances of that type are not available, the queue will not choose a new type; instead, it will wait for the instance to become available. This can stall your
Queue
, with your compute environment only using part of its max capacity (or none at all) until theBEST_FIT
instance becomes available. This allocation strategy keeps costs lower but can limit scaling.BEST_FIT
isn’t supported when updating compute environments
- BEST_FIT_PROGRESSIVE
This is the default Allocation Strategy if
spot
isfalse
or unspecified.This strategy will examine the Jobs in the queue and choose whichever instance type meets the requirements of the jobs in the queue and with the lowest cost per vCPU, just as
BEST_FIT
. However, if not all of the capacity can be filled with this instance type, it will choose a new next-best instance type to run any jobs that couldn’t fit into theBEST_FIT
capacity. To make the most use of this allocation strategy, it is recommended to use as many instance classes as is feasible for your workload.
- SPOT_CAPACITY_OPTIMIZED
If your workflow tolerates interruptions, you should enable
spot
on yourComputeEnvironment
and useSPOT_CAPACITY_OPTIMIZED
(this is the default ifspot
is enabled).This will tell Batch to choose the instance types from the ones you’ve specified that have the most spot capacity available to minimize the chance of interruption. To get the most benefit from your spot instances, you should allow Batch to choose from as many different instance types as possible.
- SPOT_PRICE_CAPACITY_OPTIMIZED
The price and capacity optimized allocation strategy looks at both price and capacity to select the Spot Instance pools that are the least likely to be interrupted and have the lowest possible price.
The Batch team recommends this over
SPOT_CAPACITY_OPTIMIZED
in most instances.