Тёмный

Single-Table Design with DynamoDB - Alex DeBrie, AWS Data Hero 

AWS Portsmouth User Group
Подписаться 1,6 тыс.
Просмотров 66 тыс.
50% 1

Опубликовано:

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 43   
@nickerhardt6334
@nickerhardt6334 3 года назад
This was by far the best video I've seen on DynamoDB. So clear and concise
@mrcjsph
@mrcjsph 3 года назад
The questions of the participants were on point. It's like they're reading my mind.
@facundosuarez6097
@facundosuarez6097 4 года назад
Awesome! I'm migrating an App to DynamoDB, this brings light to me! Thank you!
@NikhilSwamiExperimental
@NikhilSwamiExperimental 3 года назад
better than aws talks !!!!!!!!!!!!!
@Spoons4Hands
@Spoons4Hands 3 года назад
This is the most valuable introduction to dynamodb!
@ting-yuhsu4229
@ting-yuhsu4229 3 года назад
You saved my day, Alex!
@kiquetal
@kiquetal 4 года назад
Excellent!! , I'll use thsi info to create my first serverless app :D
@PrateekKumarS
@PrateekKumarS 3 года назад
I am convinced that single table design would be a good pattern to work with DynamoDb. But, does it defy the Database-per-service style for Microservice patterns ? Thoughts ?
@notafanatic
@notafanatic 2 года назад
he answers this at 59:30. one table per service
@at4371
@at4371 2 года назад
Each service with its own table.
@lardosian
@lardosian 3 года назад
With the amplify framework it uses multiple dynamodb tables (each gql model creates a new dynamo table) which is a little bit confusing as it goes against the single table principle.
@NoSQLKnowHow
@NoSQLKnowHow 2 года назад
Single table design is not a principal. It is one design pattern. It does not fit every use case.
@grahamcheetham3043
@grahamcheetham3043 3 года назад
This is such a great explanation.
@hsereh
@hsereh 3 года назад
Greate explanation , very clean
@tushargoel5522
@tushargoel5522 2 года назад
One question we are calculating hash of a primary key to identify the partition so in case new partition(s) are added, don't we have reshuffle all the data?
@dannylim1525
@dannylim1525 3 года назад
single table would be great if we can create more than 20 GSI per table. but now it seem we are limited 20 GSI per table.
@brooke0xff
@brooke0xff 3 года назад
This is generally solvable with GSI-overloading. The number of access patterns having 20 GSI’s enables when you’re using generic GSI PKs is insanely high
@new_artiko
@new_artiko 3 года назад
awesome!
@splashful
@splashful 2 года назад
What happens when you have the sort key encoded with your partition key (such as a user name) and then the user name changes? You have to go update user name in a bunch of locations? (in partition key and then in all the sort keys)?
@artificiallyunintelligent4537
imo you should not sort on something that users can change
@NoSQLKnowHow
@NoSQLKnowHow 2 года назад
The reason to limit the projection in a GSI is not primarily because of performance, it is because of storage costs. Do you want to pay real money for storing all of that data that you may not use in a GSI?
@Overthought7
@Overthought7 2 года назад
In his "why no JOIN" section, he goes over why 1 table is better than joining across 2 tables. But I have a use case where, e.g., I will only ever want either the org's info or all the org's user's info. So in that scenario, I could do 2 separate tables and never need a JOIN. Is this a scenario in which 2 table is okay, and 1 table won't offer better performance?
@Overthought7
@Overthought7 2 года назад
His example of "keeping track of LeBron James Twitter followers" is very similar to my use case. So in that scenario, I either want who is being followed (metadata) or their full list of followers, no JOINs needed.
@stephank.murphy4874
@stephank.murphy4874 Год назад
Also have to think about things like monitoring... You now have to monitor two table... Two might not be too much but if the number of table increase, it can become of consequence. Like in everything, it's all questions of trade-offs. Understand what you're gaining/losing in the choice made
@garywaddell6309
@garywaddell6309 4 месяца назад
“Know your access patterns in advance” … so much harder to get this right than it seems, makes dynamo development so much slower and frustrating to work with…I found using much simpler access patterns to be easier to manage
@impuls092
@impuls092 3 года назад
Hey Alex I have question regarding secondary index you mentioned while mentioning ticket handling, couldnt you just create USER#USER_ID as primary key and TICKET#TICKET_ID as sort key so we would have additional record with user as primary key and his ticket items as sort key
@mistwire
@mistwire 3 года назад
Hi, Alex doesn't see questions in here, but you can ping him on twitter @alexbdebrie
@isohumulone
@isohumulone 2 года назад
This was basically my question as well. Did you get an answer?
@apidas
@apidas 2 года назад
the audio is out of sync with the slide by a lot it's hard to see when he's talking about something. the slide is already on other topic
@Therealskythe
@Therealskythe 2 года назад
Might be on your end
@asdfasdfuhf
@asdfasdfuhf 2 года назад
16:35
@tamanneupane1985
@tamanneupane1985 4 года назад
I am little bit confused like i have a table name : my-application-table 1st Item : pk= USER#12345 , sk = PROFILE#12345 , image= {some_url}, name = Taman 2nd Item : pk= USER#123456 , sk = PROFILE#123456 , image= {some_url}, name = Alex 3rd Item : pk = USER#12345, sk = POST#1 , postbody = This is some tutorial 4th Item : pk = POST#1 , sk = COMMENT#1 , comment = my own comment , user = 123456 In this case when i want to show user comment in the post along with the user image and image in the comment but in the comment section i wont have user image and name. So which approach should i take 1.Complex Data Type : I cannot use this because user might change image or name 2. Duplication : I cannot use this too because user image and name might change What could be the correct approach for this type of structure or should restructure the table.
@figurich
@figurich 2 года назад
You have to allow some data duplication when switching SQL to NoSQL database. So, to handle user profile change, write some cloud functions to ensure data changed in all duplicated place.
@aesmerio
@aesmerio 3 года назад
Great explanations, Alex. It clarifies a lot about Single Table app.
@JobertoDiniz
@JobertoDiniz 2 года назад
By faaaar the best video about modeling single-table in Dynamo. In comparison, the official AWS videos assume you know a lot, and for those who are just starting NoSql + Dynamo, AWS videos are advanced.
@akashmaurya563
@akashmaurya563 3 года назад
really a great lecture on one to many relational design use cases, It is really usefull
@bsmith1310b
@bsmith1310b 4 года назад
Great material, thanks a lot!
@_cipriangg_
@_cipriangg_ Год назад
Awesome presentation! Didn't know anything about DynamoDb before this presentation, great explanation!
@nathanhyland
@nathanhyland Год назад
For a single table, how do you efficiently keep track of dynamo stream events, and make sure not all events make a stream event? Or do we just allow them to all make stream events and filter them out with a "--filter-criteria"?
@masoma01
@masoma01 2 года назад
Here in Brazil the book is very expensive, I really wanted to buy it, but equivalent to 500$
@aathivive
@aathivive 2 года назад
best video to get started learning DynamoDB design
Далее
+1000 Aura For This Save! 🥵
00:19
Просмотров 9 млн
titan tvman's plan (skibidi toilet 77)
01:00
Просмотров 4,4 млн
Witch changes monster hair color 👻🤣 #shorts
00:51
Realtime Chat App in React Native and AWS (Backend) 🔴
3:29:01
AWS DynamoDB (Internals) Masterclass with Alex Debrie
1:31:48
+1000 Aura For This Save! 🥵
00:19
Просмотров 9 млн