0
0
DynamoDBquery~10 mins

Auto-scaling configuration in DynamoDB - 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 minimum capacity for auto-scaling.

DynamoDB
{
  "AutoScalingSettingsUpdate": {
    "MinimumUnits": [1]
  }
}
Drag options to blanks, or click blank then click option'
A"min"
B5
C-1
D0
Attempts:
3 left
💡 Hint
Common Mistakes
Using zero or negative numbers for MinimumUnits.
Using strings instead of numbers.
2fill in blank
medium

Complete the code to set the target utilization percentage for auto-scaling.

DynamoDB
{
  "TargetTrackingScalingPolicyConfiguration": {
    "TargetValue": [1]
  }
}
Drag options to blanks, or click blank then click option'
A"high"
B150
C70
D-10
Attempts:
3 left
💡 Hint
Common Mistakes
Using values greater than 100 or negative values.
Using strings instead of numbers.
3fill in blank
hard

Fix the error in the code to correctly specify the scale-in cooldown period.

DynamoDB
{
  "ScaleInCooldown": [1]
}
Drag options to blanks, or click blank then click option'
A300
Bnull
C"300"
D-300
Attempts:
3 left
💡 Hint
Common Mistakes
Using string values instead of integers.
Using negative numbers or null.
4fill in blank
hard

Fill both blanks to set the maximum and minimum capacity units for auto-scaling.

DynamoDB
{
  "AutoScalingSettingsUpdate": {
    "MaximumUnits": [1],
    "MinimumUnits": [2]
  }
}
Drag options to blanks, or click blank then click option'
A100
B10
C5
D200
Attempts:
3 left
💡 Hint
Common Mistakes
Setting MinimumUnits higher than MaximumUnits.
Using zero or negative numbers.
5fill in blank
hard

Fill all three blanks to configure the target tracking policy with cooldown periods and target value.

DynamoDB
{
  "TargetTrackingScalingPolicyConfiguration": {
    "TargetValue": [1],
    "ScaleInCooldown": [2],
    "ScaleOutCooldown": [3]
  }
}
Drag options to blanks, or click blank then click option'
A75
B60
C120
D30
Attempts:
3 left
💡 Hint
Common Mistakes
Using cooldown values as strings or negative numbers.
Setting TargetValue outside 0-100 range.