Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DynamoDB: Keys and what they mean

I'm confused as to how to use DynamoDB table keys. The documentation mentions HASH (which seem to also be referred to as Partition) keys and RANGE (or SORT?) keys. I'm trying to roughly align these with my previous understanding of database indexing theories.

My current, mostly guess-based understanding is that a HASH key is essentially a primary key - it must be unique and is automatically indexed for fast-reading - and a RANGE key is basically something you should apply to any other field you plan on querying on (either in a WHERE-like or sorting context).

This is then somewhat confused by the introductions of Local and Global Secondary Indexes. How do they play into things?

If anyone could nudge me in the right direction, bearing in mind my current, probably flawed understanding has come from the docs, I'd be super grateful.

Thanks!

like image 514
user1381745 Avatar asked Sep 04 '17 12:09

user1381745


People also ask

What are the keys in DynamoDB?

DynamoDB uses primary keys to uniquely identify each item in a table and secondary indexes to provide more querying flexibility. You can use DynamoDB Streams to capture data modification events in DynamoDB tables. There are limits in DynamoDB.

What is DynamoDB key value?

Popular key-value databases It's a fully managed, multi-region, multi-master database that provides consistent single-digit millisecond latency, and offers built-in security, backup and restore, and in-memory caching. In DynamoDB, an Item is composed of a primary or composite key and a flexible number of attributes.

What are the key three attributes of DynamoDB?

DynamoDB uses three basic data model units, Tables, Items, and Attributes. Tables are collections of Items, and Items are collections of Attributes.

What is key type range in DynamoDB?

The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value. For a simple primary key (partition key), you must provide exactly one element with a KeyType of HASH .


1 Answers

Basically, the DynamoDB table is partitioned based on partition key (otherwise called hash key).

1) If the table has only partition key, then it has to be unique. The DynamoDB table performance based pretty much on the partition key. The good partition key should be a well scattered value (should not have a sequence number as partition key like RDBMS primary key in legacy systems).

2) If the table has both partition key and sort key (otherwise called RANGE key), then the combination of them needs to be unique. It is a kind of concatenation key in RDBMS terms.

However, the usage differs in DynamoDB table. DynamoDB doesn't have a sorting functionality (i.e. ORDER BY clause) across the partition keys. For example, if you have 10 items with same partition key value and different sort key values, then you can sort the result based on the sort key attribute. You can't apply sorting on any other attributes including partition key.

All sort key values of a partition key will be maintained in the same partition for better performance (i.e. physically co-located).

LSI - There can be only one LSI for the table. It should be defined when you create the table. This is kind of alternate sort key for the table

GSI - In order to understand GSI, you need to understand the difference between SCAN and QUERY API in DynamoDB.

SCAN - is used when you don't know the partition key (i.e. full table scan to get the item)

QUERY - is used when you know the partition key (i.e. sort key is optional)

As DynamoDB costing is based on read/write capacity units and for better performance, scan is not the best option for most of the use cases. So, there is an option to create the GSI with alternate partition keys based on the Query Access Pattern (QAP).

GSI Example

like image 65
notionquest Avatar answered Sep 22 '22 15:09

notionquest