compose-x / ecs_composex

Manage, Configure and Deploy your services and AWS services and applications from your docker-compose definitions
https://docs.compose-x.io
Mozilla Public License 2.0
164 stars 17 forks source link

[FR] x-dynaomdb.`Scaling` #614

Closed JohnPreston closed 2 years ago

JohnPreston commented 2 years ago

As a heavy dynamodb user, I want to define autoscaling for a given DynamoDB (and possibly its indexes)

x-dynamodb:
  tableA:
    Scaling:
      Table:
        WriteCapacityUnits:
          MinCapacity: xx
          MaxCapacity: xx
          UtilizationTarget: 60.0 # Reads 60.0%
        ReadCapacityUnits:
          MinCapacity: xx
          MaxCapacity: xx
          UtilizationTarget: 60.0 # Reads 60.0%
      Indexes:
        <index_name>:
          WriteCapacityUnits: {}
          ReadCapacityUnits: {}