interface MemoryUtilizationScalingProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ECS.MemoryUtilizationScalingProps |
![]() | software.amazon.awscdk.services.ecs.MemoryUtilizationScalingProps |
![]() | aws_cdk.aws_ecs.MemoryUtilizationScalingProps |
![]() | @aws-cdk/aws-ecs » MemoryUtilizationScalingProps |
The properties for enabling scaling based on memory utilization.
Example
declare const cluster: ecs.Cluster;
const loadBalancedFargateService = new ecsPatterns.ApplicationLoadBalancedFargateService(this, 'Service', {
cluster,
memoryLimitMiB: 1024,
desiredCount: 1,
cpu: 512,
taskImageOptions: {
image: ecs.ContainerImage.fromRegistry("amazon/amazon-ecs-sample"),
},
});
const scalableTarget = loadBalancedFargateService.service.autoScaleTaskCount({
minCapacity: 1,
maxCapacity: 20,
});
scalableTarget.scaleOnCpuUtilization('CpuScaling', {
targetUtilizationPercent: 50,
});
scalableTarget.scaleOnMemoryUtilization('MemoryScaling', {
targetUtilizationPercent: 50,
});
Properties
Name | Type | Description |
---|---|---|
target | number | The target value for memory utilization across all tasks in the service. |
disable | boolean | Indicates whether scale in by the target tracking policy is disabled. |
policy | string | A name for the scaling policy. |
scale | Duration | Period after a scale in activity completes before another scale in activity can start. |
scale | Duration | Period after a scale out activity completes before another scale out activity can start. |
targetUtilizationPercent
Type:
number
The target value for memory utilization across all tasks in the service.
disableScaleIn?
Type:
boolean
(optional, default: false)
Indicates whether scale in by the target tracking policy is disabled.
If the value is true, scale in is disabled and the target tracking policy won't remove capacity from the scalable resource. Otherwise, scale in is enabled and the target tracking policy can remove capacity from the scalable resource.
policyName?
Type:
string
(optional, default: Automatically generated name.)
A name for the scaling policy.
scaleInCooldown?
Type:
Duration
(optional, default: Duration.seconds(300) for the following scalable targets: ECS services,
Spot Fleet requests, EMR clusters, AppStream 2.0 fleets, Aurora DB clusters,
Amazon SageMaker endpoint variants, Custom resources. For all other scalable
targets, the default value is Duration.seconds(0): DynamoDB tables, DynamoDB
global secondary indexes, Amazon Comprehend document classification endpoints,
Lambda provisioned concurrency)
Period after a scale in activity completes before another scale in activity can start.
scaleOutCooldown?
Type:
Duration
(optional, default: Duration.seconds(300) for the following scalable targets: ECS services,
Spot Fleet requests, EMR clusters, AppStream 2.0 fleets, Aurora DB clusters,
Amazon SageMaker endpoint variants, Custom resources. For all other scalable
targets, the default value is Duration.seconds(0): DynamoDB tables, DynamoDB
global secondary indexes, Amazon Comprehend document classification endpoints,
Lambda provisioned concurrency)
Period after a scale out activity completes before another scale out activity can start.