

# DynamoDB 테이블의 현재 웜 처리량 확인
<a name="check-warm-throughput"></a>

다음 AWS CLI 및 AWS 콘솔 지침을 사용하여 테이블 또는 인덱스의 현재 웜 처리량 값을 확인합니다.

## AWS Management Console
<a name="warm-throughput-check-console"></a>

DynamoDB 콘솔을 사용하여 DynamoDB 테이블의 웜 처리량을 확인하려면:

1. AWS Management Console에 로그인하고 DynamoDB 콘솔([https://console.aws.amazon.com/dynamodb/](https://console.aws.amazon.com/dynamodb/))을 엽니다.

1. 왼쪽 탐색 창에서 테이블을 선택합니다.

1. **테이블** 페이지에서 원하는 테이블을 선택합니다.

1. 현재 웜 처리량 값을 보려면 **추가 설정**을 선택합니다. 이 값은 초당 읽기 단위 및 초당 쓰기 단위로 표시됩니다.

## AWS CLI
<a name="warm-throughput-check-CLI"></a>

다음 AWS CLI 예제에서는 DynamoDB 테이블의 웜 처리량을 확인하는 방법을 보여줍니다.

1. DynamoDB 테이블에서 `describe-table` 작업을 실행합니다.

   ```
   aws dynamodb describe-table --table-name GameScores
   ```

1. 아래와 비슷한 응답을 받게 됩니다. `WarmThroughput` 설정은 `ReadUnitsPerSecond` 및 `WriteUnitsPerSecond`로 표시됩니다. `Status`는 웜 처리량 값이 업데이트될 때는 `UPDATING`, 새 웜 처리량 값이 설정되었을 때는 `ACTIVE`가 됩니다.

   ```
   {
       "Table": {
           "AttributeDefinitions": [
               {
                   "AttributeName": "GameTitle",
                   "AttributeType": "S"
               },
               {
                   "AttributeName": "TopScore",
                   "AttributeType": "N"
               },
               {
                   "AttributeName": "UserId",
                   "AttributeType": "S"
               }
           ],
           "TableName": "GameScores",
           "KeySchema": [
               {
                   "AttributeName": "UserId",
                   "KeyType": "HASH"
               },
               {
                   "AttributeName": "GameTitle",
                   "KeyType": "RANGE"
               }
           ],
           "TableStatus": "ACTIVE",
           "CreationDateTime": 1726128388.729,
           "ProvisionedThroughput": {
               "NumberOfDecreasesToday": 0,
               "ReadCapacityUnits": 0,
               "WriteCapacityUnits": 0
           },
           "TableSizeBytes": 0,
           "ItemCount": 0,
           "TableArn": "arn:aws:dynamodb:us-east-1:XXXXXXXXXXXX:table/GameScores",
           "TableId": "XXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
           "BillingModeSummary": {
               "BillingMode": "PAY_PER_REQUEST",
               "LastUpdateToPayPerRequestDateTime": 1726128388.729
           },
           "GlobalSecondaryIndexes": [
               {
                   "IndexName": "GameTitleIndex",
                   "KeySchema": [
                       {
                           "AttributeName": "GameTitle",
                           "KeyType": "HASH"
                       },
                       {
                           "AttributeName": "TopScore",
                           "KeyType": "RANGE"
                       }
                   ],
                   "Projection": {
                       "ProjectionType": "INCLUDE",
                       "NonKeyAttributes": [
                           "UserId"
                       ]
                   },
                   "IndexStatus": "ACTIVE",
                   "ProvisionedThroughput": {
                       "NumberOfDecreasesToday": 0,
                       "ReadCapacityUnits": 0,
                       "WriteCapacityUnits": 0
                   },
                   "IndexSizeBytes": 0,
                   "ItemCount": 0,
                   "IndexArn": "arn:aws:dynamodb:us-east-1:XXXXXXXXXXXX:table/GameScores/index/GameTitleIndex",
                   "WarmThroughput": {
                       "ReadUnitsPerSecond": 12000,
                       "WriteUnitsPerSecond": 4000,
                       "Status": "ACTIVE"
                   }
               }
           ],
           "DeletionProtectionEnabled": false,
           "WarmThroughput": {
               "ReadUnitsPerSecond": 12000,
               "WriteUnitsPerSecond": 4000,
               "Status": "ACTIVE"
           }
       }
   }
   ```