Writing data to DynamoDB - AWS Tutorial

Опубликовано: 28 Май 2026
на канале: Code & bird
644
8

We need to create a table to save our labels and other metadata for image.
We will use dynamoDB - its nosql database in was cloud. The main benefit of nosql databases is horizontal scalability - it stores our item as documents and we can expand the db adding more and more capacity to it, automatically.

Unlike sql databases, We do not have to create a schema for our table, we can add new properties to documents during the development, what gives us some freedom and flexibility.

The only required «column» is primary key - a unique identification of every document.

Sounds amazing, but it has some limitation, we will see what is it soon.
Project repo https://github.com/nim-f/recognition-...
Serverless framework https://www.serverless.com/