AWS Database Blog

The top 20 most-viewed Amazon DynamoDB documentation pages in 2019

The following 20 pages were the most viewed Amazon DynamoDB documentation pages in 2019. I have included a brief description with each link to explain what each page covers. Use this list to see what other AWS customers have been viewing and perhaps to pique your own interest in a topic you’ve been meaning to explore.

  1. Working with Queries
    The DynamoDB Query operation finds items based on primary key values. You can query any table or secondary index that has a composite primary key (a partition key and a sort key).
  2. What Is Amazon DynamoDB?
    This brief introduction to DynamoDB also serves as the welcome page in the DynamoDB Developer Guide.
  3. Setting Up DynamoDB Local (Downloadable Version)
    The downloadable version of DynamoDB lets you write and test applications without accessing the DynamoDB web service. When you’re ready to deploy your application in production, you can make a few minor changes to the code so that it uses the DynamoDB web service.
  4. Best Practices for DynamoDB
    Quickly find recommendations for maximizing performance and minimizing throughput costs when working with DynamoDB.
  5. Limits in DynamoDB
    These current DynamoDB limits (or lack thereof, in some cases) apply on a per-region basis unless otherwise specified.
  6. Query
    Use the KeyConditionExpression parameter to provide a specific value for the partition key. The Query operation returns all of the items from the table or index with that partition key value.
  7. Read/Write Capacity Mode
    DynamoDB has two read/write capacity modes for processing reads and writes on your tables: on-demand and provisioned.
  8. DynamoDB Core Components
    In DynamoDB, tables, items, and attributes are the core components that you work with. A table is a collection of items, and each item is a collection of attributes.
  9. Getting Started with DynamoDB
    Language-specific, hands-on tutorials to help you learn about DynamoDB. The sample code in these tutorials can run against either DynamoDB local or the DynamoDB web service.
  10. Node.js and DynamoDB Tutorial
    Learn how to use the AWS SDK for JavaScript to write simple programs to perform DynamoDB operations.
  11. PutItem
    Create a new item, or replace an old item with a new item. If an item that has the same primary key as the new item already exists in the specified table, the new item completely replaces the existing item.
  12. Working with Items in DynamoDB
    In DynamoDB, an item is a collection of attributes, and each attribute has a name and a value. DynamoDB provides four operations for basic create/read/update/delete (CRUD) functionality.
  13. UpdateItem
    Use this action to edit an existing item’s attributes, or add a new item to the table if it does not already exist. You can put, delete, or add attribute values.
  14. Global Secondary Indexes
    Some applications might need to perform many kinds of queries, using a variety of different attributes as query criteria. To support these requirements, you can create one or more global secondary indexes and issue Query requests against these indexes.
  15. Node.js and DynamoDB Tutorial
    In this tutorial, you use the AWS SDK for JavaScript to create a table and load sample data in JSON format, run CRUD operations on the table, and run simple queries
  16. Download and Run DynamoDB Local on Your Computer
    How to download and run DynamoDB local on your computer.
  17. Python and DynamoDB Tutorial
    Learn how to use the AWS SDK for Python (Boto 3) to write simple programs to perform DynamoDB operations.
  18. Condition Expressions
    To manipulate data in a DynamoDB table, you use the PutItemUpdateItem, and DeleteItem operations. For these data manipulation operations, you can specify a condition expression to determine which items should be modified.
  19. Amazon DynamoDB: How It Works
    This overview covers DynamoDB service components and how they interact.
  20. Capturing Table Activity with DynamoDB Streams
    DynamoDB Streams captures a time-ordered sequence of item-level modifications in any DynamoDB table, and stores this information in a log for up to 24 hours. Applications can access this log and view the data items as they appeared before and after they were modified, in near-real time.

On @DynamoDB, let us know if you would like us to update anything on these or other DynamoDB documentation pages to make them more useful to you.

 


About the Author

 

Ahmed Moustafa is a senior programmer writer for Amazon DynamoDB. He works with other writers and editors to provide and improve documentation for DynamoDB.