0
0
AWScloud~10 mins

Scaling policies (target tracking, step, simple) in AWS - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the type of scaling policy for automatic scaling.

AWS
"PolicyType": "[1]"
Drag options to blanks, or click blank then click option'
AStepScaling
BTargetTrackingScaling
CManualScaling
DSimpleScaling
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing TargetTrackingScaling when asked for simple scaling type.
2fill in blank
medium

Complete the code to set the target value for a target tracking scaling policy.

AWS
"TargetTrackingConfiguration": {"TargetValue": [1]
Drag options to blanks, or click blank then click option'
A75
B50
C100
D25
Attempts:
3 left
💡 Hint
Common Mistakes
Using 100 which might cause constant scaling up.
3fill in blank
hard

Fix the error in the step scaling adjustment configuration by completing the missing operator.

AWS
"StepAdjustments": [{"MetricIntervalLowerBound": 0, "ScalingAdjustment": [1]]
Drag options to blanks, or click blank then click option'
A1
B0
C-1
D2
Attempts:
3 left
💡 Hint
Common Mistakes
Using negative values which would scale in instead of out.
4fill in blank
hard

Fill both blanks to define a step scaling policy with a lower bound and scaling adjustment.

AWS
"StepAdjustments": [{"MetricIntervalLowerBound": [1], "ScalingAdjustment": [2]]
Drag options to blanks, or click blank then click option'
A10
B5
C1
D-1
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up lower bound and scaling adjustment values.
5fill in blank
hard

Fill all three blanks to configure a target tracking scaling policy with customized parameters.

AWS
"TargetTrackingConfiguration": {"PredefinedMetricSpecification": {"PredefinedMetricType": "[1]"}, "TargetValue": [2], "DisableScaleIn": [3]
Drag options to blanks, or click blank then click option'
AASGAverageCPUUtilization
B50
Ctrue
Dfalse
Attempts:
3 left
💡 Hint
Common Mistakes
Setting DisableScaleIn to true when scale-in is desired.