Skip to main content

DynamoDB Lens - Analyze your DynamoDB environment

Project description

DynamoDB Lens

A set of tools to help understand DynamoDB table performance capabilities and potential cost optimization opportunities.

Installation and usage

Installation

python3 -m pip install dynamodb-lens

CLI usage

usage: cli [-h] --table_name TABLE_NAME [--metric_consumed_period_s METRIC_CONSUMED_PERIOD_S] [--save_analysis] [--verbose]

options:
  -h, --help            show this help message and exit
  --table_name TABLE_NAME
  --metric_consumed_period_s METRIC_CONSUMED_PERIOD_S
                        The cloudwatch metric period for consumed WCU/RCU
  --save_analysis       save the json formatted analysis to a file
  --verbose             Print the full analysis, otherwise a summary will be printed
python3 -m dynamodb_lens.cli --table_name sentences1 --metric_consumed_period_s 60 --verbose --save_analysis

Table Analyzer

This library analyzes a table's current state, configuration and usage in order to estimate performance capabilities.
A DynamoDB Table's current partition count as well as table settings will determine its performance capabilities.
Partition count is not exposed directly, but we can infer the number of partitions in several ways:

  1. Count the number of Open DynamoDB Stream shards, it is a 1:1 mapping of Open shards to Partitions
  2. Check cloudwatch max Provisioned settings over the last 3 months
  3. Check cloudwatch max consumed WCU/RCU over the last 1 month (more accurate if consumed_period_s set to 60)
  4. Check current WCU/RCU settings on the table if Provisioned mode is currently configured
  5. Check the current storage utilization of the table

If Streams is not enabled, this program will estimate current number of partitions based on the maximum WCU/RCU values calculated from the data gathered in #2-5 above.
DynamoDB tables never give back partitions once they've been allocated.
This is what is meant by "previous peak" in the documentation.

This program is more accurate if DynamoDB Streams is enabled for the table.
Enabling streams is outside the scope of this program, it can be done via:


aws dynamodb update-table --table-name <value> --stream-specification StreamEnabled=true,StreamViewType=KEYS_ONLY
and disabled with:
aws dynamodb update-table --table-name <value> --stream-specification StreamEnabled=false

Please review the documentation and understand the implications of running these commands before executing them.


TableAnalyzer class usage

The class can be imported and called directly if the dynamodb_lens.cli doesn't fit the use case
The only required parameter is table_name, and optionally verbose=True|False plus already instantiated boto3 clients can be passed in.

from dynamodb_lens.analyzer import TableAnalyzer
from dynamodb_lens.utils import return_boto3_client

table = TableAnalyzer(
    table_name='foo',
    consumed_period_s=60,
    lambda_client=return_boto3_client('lambda'),
    ddbs_client=return_boto3_client('dynamodbstreams'),
    ddb_client=return_boto3_client('dynamodb'),
    cw_client=return_boto3_client('cloudwatch'),
    verbose=False
)
table.print_analysis()

TableAnalyzer.analysis

The main purpose of TableAnalyzer is to produce a json-formatted analysis variable.

Syntax

{
    "TableDescription": { dict },
    "StreamDescription": { dict },
    "EstimationData": {
        "Description": "Raw estimation data used for debugging purposes only!",
        "WCU": {
            "CurrentProvisionedWCU": int,
            "MaxConsumedWCU": int,
            "MaxProvisionedWCU": int
        },
        "RCU": {
            "CurrentProvisionedRCU": int,
            "MaxConsumedRCU": int,
            "MaxProvisionedRCU": int
        },
        "Partitions": {
            "MaxProvisionedWCU": int,
            "MaxProvisionedRCU": int,
            "CurrentTableSize": int
        }
    },
    "Summary": {
        "TableName": "string",
        "TableArn": "string",
        "DeletionProtection": boolean,
        "SizeMB": int,
        "ItemCount": int,
        "BillingMode": "ON-DEMAND|PROVISIONED",
        "StreamArn": "string",
        "Estimations": {
            "EstimationMethod": "StreamOpenShards|OnDemandBaseSpecs|CurrentTableSize|CurrentProvisionedWCU|CurrentProvisionedRCU|MaxConsumedWCU|MaxConsumedRCU|MaxProvisionedWCU|MaxProvisionedRCU",
            "EstimationMethodDescription": "string",
            "Partitions": int,
            "TableMaximums": {
                "WCU": int,
                "WriteThroughputMBs": int,
                "RCU": {
                    "Base": int,
                    "EventuallyConsistent": int
                },
                "ReadThroughputMBs": {
                    "Base": int,
                    "EventuallyConsistent": int
                }
            },
            "PartitionMaximums": {
                "Comments": "string",
                "WCU": int,
                "WriteThroughputMBs": int,
                "RCU": {
                    "Base": int,
                    "EventuallyConsistent": int
                },
                "ReadThroughputMBs": {
                    "Base": int,
                    "EventuallyConsistent": int
                }
            }
        }
    }
}

Structure

  • TableDescription (dict)
    requires self.verbose = True
    The boto3 dynamodb client.describe_table response. See https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/describe_table.html
  • StreamDescription (dict)
    requires self.verbose = True
    The boto3 dynamodbstreams client.describe_stream response. See https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodbstreams/client/describe_stream.html
  • EstimationsData (dict)
    requires self.verbose = True
    This is the data used to estimate number of partitions if streams are not enabled, primarily meant for debugging only
    • WCU (dict)
    • RCU (dict)
    • Partitions (dict)
  • Summary (dict)
    • TableName (string)
      • The name of the table
    • TableArn (string)
      • The ARN of the table
    • DeletionProtection (bool)
      • Is Deletion protection enabled?
    • SizeMB (int)
      • Size in Megabytes
    • ItemCount (int)
      • The number of items
    • BillingMode (str)
      • ON-DEMAND: Pay per request
      • PROVISIONED: Pay hourly for predictable throughput
    • StreamArn (str)
      • The ARN of the stream
    • Estimations (dict)
      • EstimationMethod (string) - The method that was used to estimate the number of partitions and performance capabilities
        • StreamOpenShards
          • When DynamoDB Streams are enabled for a table, we simply count the number of Open shards to determine partitions
        • OnDemandBaseSpecs
          • The table is in On-Demand mode and base table specs for on-demand were used for the calculations
        • CurrentTableSize
          • Each DynamoDB partition can be up to 10 GB in size, total size (GB)/10
        • CurrentProvisionedWCU|CurrentProvisionedRCU
          • The current table specifications
        • MaxConsumedWCU|MaxConsumedRCU|MaxProvisionedWCU|MaxProvisionedRCU
          • Cloudwatch metrics
      • EstimationMethodDescription (str)
        • Describes the EstimationMethod used and why
      • Partitions (int)
        • The number of partitions
          • If Streams are enabled, this is 100% accurate.
          • If we used metric data or table settings then it is an estimate.
      • TableMaximums (dict) - Based on number of partitions and current table settings, estimate the table maximums
        • WCU (int)
          • Total WriteCapacityUnits
        • WriteThroughputMbs
          • Total Write Throughput
        • RCU (dict)
          • Base (int)
            • ReadCapacityUnits for strong reads
          • EventuallyConsistent (int)
            • ReadCapacityUnits for eventually consistent reads
        • ReadThroughputMBs (int)
          • Base (int)
            • ReadThroughput in MB/s for strong reads
          • EventuallyConsistent (int)
            • ReadThroughput in MB/s for eventually consistent reads
      • PartitionMaximums (dict) - Based on number of partitions and current table settings, estimate the per-partition maximums
        • Comments (string)
          • Comments about the partition maximums
        • WCU (int)
          • Per-partition WriteCapacityUnits
        • WriteThroughputMbs (int)
          • Per-partition Write Throughput
        • RCU (dict)
          • Base (int)
            • Per-partition ReadCapacityUnits for strong reads
          • EventuallyConsistent (int)
            • Per-partition ReadCapacityUnits for eventually consistent reads
        • ReadThroughputMBs (int)
          • Base (int)
            • ReadThroughput in MB/s for strong reads
          • EventuallyConsistent (int)
            • ReadThroughput in MB/s for eventually consistent reads

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

dynamodb_lens-23.10.dev10-py3-none-any.whl (10.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page