DynamoDB Single Table Design Operations.
Performs operations on DynamoDB tables following the single table design pattern. Multiple entity types are stored in one table using composite primary keys (pk/sk) and GSIs to support various access patterns.
Key conventions:
DynamoDB Single Table Design Operations.
Performs operations on DynamoDB tables following the single table design pattern.
Multiple entity types are stored in one table using composite primary keys (pk/sk)
and GSIs to support various access patterns.
Key conventions:
- pk, pk1, pk2, ... : Partition key columns (pk for main table, pk1+ for GSIs)
- sk, sk1, sk2, ... : Sort key columns (sk for main table, sk1+ for GSIs)
- GSI naming: gsiPk{n}Sk{m} (e.g., gsiPkSk1, gsiPk1Sk2)
- creationTime: Automatically set on first insert (immutable)
- updateTime: Automatically updated on every upsertcljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |