Great job explaining the topic and exploring the limitations. The way you explain a complicated subject with simplicity without sacrificing knowledge is sheer elegance. Keep it up.
Yes BABDev: simplitivity without sacrificing knowledge...spot on! I like the way you explain everything. When I'm learning from a tutorial I HATE having to spend half the time googling what was mentionef but not explained....thanks for NOTsoing this...it really helps. Ps...great voice too...clear&well modulated. Just easy to listen to.
The whole hot partition concern and the WCU / RCU hard limits are pretty much a thing of the past. DynamoDB will automatically reshard your partitions behind the scenes down to a single item if the disproportional velocity access is there. It means you'll only reach hard limit throttling if you have a single item being responsible for more than 1000 WCU / 3000 RCU.
Thank you so much for your kind words. I actually kind of enjoy reading documentation and I'm glad I can translate that into easy to understand examples for all of my viewers. Thanks again!
This was excellent - wish I had watched it 6 months ago! I was actually searching for "cardinality" and your vid came up among the first results.... Thanx again.👍
You are awesome and one of the best teachers I have ever seen. You boil down the concepts into simpler concepts extremely well. API Gateway tutorials please (I can even pay you for that :P)
Thanks Alicia. You''re feedback means a lot. I have one coming out this weekend on DynamoDB Autoscaling, but definitely plan on doing one on GSIs in the next month or so. Thanks again!
Excellent video on DynamoDb partition key concepts , it would really help. If you could provide any video on DAX whenit can be used and its pros and cons
So does querying with parition and sort key will take logn time? Partition key will determine with hashing function the correct partition and then in that partition we will use sort key(log n time, where n is rows with same partition key value) to get to the reuqired row?
Hey! Your videos are very helpful and I learn a lot of things! For me and maybe another people it might be interesting to see an end to end project. You don't have to implement it but something like a general concept would be awesome. For example something like: Deploy a website and a REST service via AWS. Which services should we use and how to secure the backend and how to connect the REST API to a DB. Things like this would be absolutely awesome :) I'll definitely follow you and watch the other tutorials. Cheers mate :)
@@BeABetterDev An additional suggestion that might be easier and also makes a lot in for example the whole aws rds context is a tutorial about bastions/jump boxes. I. e. host an RDS Aurora db in a private vpc and then you create a jumbox to connect to this db via SSH. Have a great day :)
In my case i want to scan all data each time to compare with my response to know where update occur or insert and according to that i want to perform other requests...so what could be the best possible way?
Hi Rohit, the thing you need to be careful about using PartiQL is that performing queries are non-indexed columns can result in a scan operation instead of a query. This can cause high costs and poor performance for these types of operations. Hope this helps clarify.
Sorry, I would like to ask a question. At 6:18, you said that item with the partition key 3 will be stored in the same partition as item with partition key 1. But aren't they having different hash value after you put their partition key into the hash function? So why did they end up in the same partition?
Hi 黃翌軒, Depending on the size of your table, DynamoDB may store values with a different partition key on the same physical partition. As your data size or throughput demands grow, DynamoDB can re-split these partitions into smaller ones. Hope this helps.
Very nicely explained indeed. I have seen some examples where the Partition Key is an UUID value. However, in some cases, I need my primary key to be an auto-increment integer like the one many SQL databases provide. What is your suggestion?
Hi Kyriacos, Unfortunately auto-increment isnt supported in DynamoDB. Generally speaking, in a NoSQL database it is advised to use a meaningful primary key so you can quickly retrieve your data by said key. Your access pattern should define what your primary key should be (even a composite key could be used). Your requirements make me think a traditional relational database could be better suited for your use case.
So in an amplify project for example, this schema is defined in the graphql schema yes? Do you have any such videos. I found a very good post on Dev.to from Nader Dabit about creating a robust graphql schema with directives, thanks!
Great video. Just one doubt. How to design my table if i have more than 2 fields for uniqueness (let's say 3 fields defining uniqueness. For example, in vehicle, make+model+year is unique)
Great Video, thank you for all the information! I have a question about filtering - which solution would you approach if you wanted to filter with multiple conditions? Equivalent to: WHERE country=„…“ & age=„…“ & … and so on (note: country and age are not pk or sk and without using filterExpressions) Or is there not a nice solution with dynamodb to that and aurora would be a better choice? Thank you in advance
Hi. When designing a DB schema in DynamoDB how do you store the traditional lookup values like countries? In it's own table country with countryCode, countryName attributes? What's the best practice here? Thanks.
Hi Miral, I think it would be as simple as just appending each value using a delimiter such as value1-value2-value3. Keep in mind though this pattern requires you to know all these values before querying in order to find your records in Dynamo. Hope this helps, Daniel
Hi ruru, There is no limit. However keep in mind that there is a 10gb max partition size in dynamo. I believe the partition splits afterwards. If you have too much throughput on the same partition key you make get throttling errors.
what if partition key itself is unique an there are 1 million records example email id as partition key in user table?will there be a problem with too many partitions?
Great video, I got a question through an example If I had a sign up method in app and I can do it by email or phone number I was thinking about primary key because of cognito Id user, and that user sell products using many categories can have those products and categories under same table and row and query it by it's I'd, it's a good practice ? thanks
Is it possible for you to create a video on how to create DynamoDB table - having LSI and GSIs through Cloudformation script and add items in it using put_item from boto3 python SDK?
6:20 How does the item with Account Id = 3 goes into Partition 1? Shouldn't it go to Partition 3 since the Account Id attribute is defined as partition key?
IN my understanding, When the hash function is applied on the account Id it generated the target as partition 1. E.g. id % 2 ==0 will go in partition 2 and rest in 1. Hope it helps
Very Knowledgeable video Clare my table schema confusion. Please do share the Github link for code reference for serverless application if you have any..
Most of the time, we depend of business rules. I mean, recently, we create a table with just an uuid (for each object). Then later, The business would like to retrieve thoses objects but without knowing the uuid, they need to retrieve the object by the name And lastModificationDate (between two dates). How do you manage that ? You have to create some gsi... But we do not have always all the information when we start the archtecture. This is very complicated when your project evolves with anothers features that you do not anticipate. This is my pain using dynamodb over mysql before.
The use case for Dynamodb is driven by high performance, so ultimately the business needs to understand the complexity of new queries. You can also utilise something like dynamo streams to update something like elastic search or ETL the data into a relational DB for complex queries.
Thank you, just subbed. I'm about to get my hands dirty with AWS for the first time, use case is building an API and a PWA with React, was thinking of using the serverless framework, some advise to steer me in right direction would be greatly appreciated, I'm also doing my own research so it looks like I will need the combination of the following..API Gateway, Lamda functions, Dynamo DB, Cognito for backend, S3 for hosting, serverless for my framework, I'm sure theres more, thank you!
Hi Lardosian! Welcome to the channel. Great to hear you're getting familiar with AWS. In terms of your use cases, It sounds like you've identified the right AWS technologies for your use cases. Here are some additional videos I think could be helpful. IAM - IAM permissions are the bread and butter of AWS. You should get very familiar with them - ua-cam.com/video/y8cbKJAo3B4/v-deo.html Lambda Introduction - ua-cam.com/video/iUIWG0h2D84/v-deo.html Building a REST API with API Gateway + Lambda - ua-cam.com/video/uFsaiEhr1zs/v-deo.html Basic DynamoDB Operations - ua-cam.com/play/PL9nWRykSBSFgmcJMpr7XAk3BC0VPAK_i-.html Hope this helps!
Thanks for this very insightful session. Just would like to know where I can ask questions. I have one doubt about PutItem, which is not related to this video.
Good video.. after spending over a decade in SQL database.. its challenging to understand how SQL schema could be translated/redesigned to NOSQL. If you could make a video by taking example of AdventureWorks to show how you would design that use case in NOSQL, that would be great.
I must be missing something fundamental about Dynamo because I keep looking up how to retrieve all items in my table in a sorted order, but I keep ending up on articles and videos like this where they talk about read capacity and partitioning. I want SELECT * FROM table ORDER BY time ASC. I get the feeling I could give everything the same partition key and unique sort key and have them come back ordered but that has to be the wrong way to achieve my goal.
I am not sure of your exact use case and why you need to do a Select * FROM table, but I am pure guessing from the way you state your comment that more than likely you are trying to apply a relational DB mindset onto a NoSQL database, in this case DynamoDB. If you want to expand your comment, I am happy to try and help you though.
@@NoSQLKnowHow I have been messing around with Dynamo to build a serverless version of my blog. The traffic I get would be well under the free tier limit for both Lambda and Dynamo, so I could have a blog hosted for cheap. As an example of what I'm trying to do, I would call Dynamo to retrieve my blog posts and have them return in order of the sort key which is a timestamp. So far, I can only call scan and sort them after they return but eventually I'll want to do pagination and only return ten of the most recent posts.
Hey Stephen! Based on your description, it sounds like you're trying to use Dynamo as if it were a traditional Relational Database. NoSql databases like Dynamo excel at quick retrieval for known values where you know the key (either singular or composite) that you are looking for. It can be extended to query for a key + a second attribute (sort key), but its functionality is pretty limited. Concerning your specific problem, you can solve this by having a table setup where your partition key is something like blog id (singular value) and your range/sort key is creation date. The combination of these values should be unique (as you can never create two blog posts at the same time). Using this approach, you can perform a paginated query in descending order on the sort key to get top X results (set your LIMIT to be X on your query). This isn't an ideal setup but should solve your problem. Hope this helps!
Am a veteran RDBMS guy and new to NoSQL. I got to say, the way your describe NoSQL stuff is just phenomenal.
Thank you so much for the kind words!
This is one of the most useful video I found on dynamodb keys. You made me your subscriber
Thank you for the kind words. Its comments like these that motivate me to keep making more videos. Thanks again and take care.
Splitting up the RCU to depict the partition capacity is by far the best way I seen hot partition be explained.
Thank you!
@@BeABetterDev Thanks to you I got my Dev Associate!!!
This is by far the best video I found for DynamoDB Keys!
Great job explaining the topic and exploring the limitations. The way you explain a complicated subject with simplicity without sacrificing knowledge is sheer elegance. Keep it up.
Thanks so much Lee! Your comments means a lot to me :)
Yes BABDev: simplitivity without sacrificing knowledge...spot on! I like the way you explain everything. When I'm learning from a tutorial I HATE having to spend half the time googling what was mentionef but not explained....thanks for NOTsoing this...it really helps.
Ps...great voice too...clear&well modulated. Just easy to listen to.
The whole hot partition concern and the WCU / RCU hard limits are pretty much a thing of the past. DynamoDB will automatically reshard your partitions behind the scenes down to a single item if the disproportional velocity access is there. It means you'll only reach hard limit throttling if you have a single item being responsible for more than 1000 WCU / 3000 RCU.
Best Dynamo DB Schema Tutorials with precision knowledge providing all the use cases. Many Thanks.
Thank you so much for your kind words!
You're such a gifted teacher. It's not easy to grasp all this information from the documentation. Thanks for the amazing video.
Thank you so much for your kind words. I actually kind of enjoy reading documentation and I'm glad I can translate that into easy to understand examples for all of my viewers.
Thanks again!
Man you really simplified it. The original documentation will take you in circles all over the place. Fantastic video.
Thank you so much! I'm glad you enjoyed the video and helped you understand the concepts.
Daniel
4 years alter... this run through is still very helpful. 👍
Best DynamoDb explained ever.
This was excellent - wish I had watched it 6 months ago! I was actually searching for "cardinality" and your vid came up among the first results.... Thanx again.👍
You are awesome and one of the best teachers I have ever seen. You boil down the concepts into simpler concepts extremely well. API Gateway tutorials please (I can even pay you for that :P)
Thanks Suresh for such kind words. It is comments like yours that motivate to keep making content. Thank you!
you deserve more subscribers .. keep up good work
I appreciate that!
Thanks for explaining in a simplified way. Very useful
You're very welcome sumaiya!
I agree with all the comments here. Nice work describing this in simple terms.
Thank you!
Simple and to the point explanation...Keep up the good work
Thanks a lot!
Great stuff! Very helpful, thanks.
You just won a subscriber. High-quality stuff (y)
Thanks Akash! Glad you enjoyed.
Excellent video. Good speaker and provides content very well! Easy to learn from!!
Much appreciated!
This is super useful, please create a video on local secondary index as well
Thanks Rama! I'll add LSIs to my backlog of ideas. Cheers.
Hi Rama, in response to your feedback, I just created a video on Local Secondary Indexes - check it out here: ua-cam.com/video/Y8gMoZOMYyg/v-deo.html
This was super useful, would be awesome if you could do a video on GSI and how that works, can't seem to wrap my head around it fully
Thanks Alicia. You''re feedback means a lot. I have one coming out this weekend on DynamoDB Autoscaling, but definitely plan on doing one on GSIs in the next month or so. Thanks again!
Hey alicia, check out this new video I just posted on GSIs! ua-cam.com/video/ihMOlb8EZKE/v-deo.html
Very nicely explained.
Thank you! 🙂
Fantastic video! Easy to learn. Thank you 🙏
These are really good mane, keep it up 👍🏻
Thanks Michael!
Excellent video on DynamoDb partition key concepts , it would really help. If you could provide any video on DAX whenit can be used and its pros and cons
Thank you for the kind words. A video on DAX is coming soon!
very well explained.. all stuff no fluff.
Thanks ashutosh!
Very well explained. Thank you!
You're very welcome Zain!
Awesome video, keep the good work!
Thanks Gustavo! Really appreciate the kind words.
So does querying with parition and sort key will take logn time? Partition key will determine with hashing function the correct partition and then in that partition we will use sort key(log n time, where n is rows with same partition key value) to get to the reuqired row?
Awesome tutorial !!
Thank you! Cheers!
Impressed.... Very informative
Glad you liked it!
Excellent video !! Do you have any video on data modelling a relational database in DynamoDB
Hi Ajay, not yet but thanks for the great tip!
Very well explained!
Thanks vimal!
Hey! Your videos are very helpful and I learn a lot of things!
For me and maybe another people it might be interesting to see an end to end project. You don't have to implement it but something like a general concept would be awesome.
For example something like: Deploy a website and a REST service via AWS. Which services should we use and how to secure the backend and how to connect the REST API to a DB. Things like this would be absolutely awesome :)
I'll definitely follow you and watch the other tutorials.
Cheers mate :)
Thanks Neal! An End to End video has been on my radar for a while. Thanks for the suggestion!
@@BeABetterDev An additional suggestion that might be easier and also makes a lot in for example the whole aws rds context is a tutorial about bastions/jump boxes. I. e. host an RDS Aurora db in a private vpc and then you create a jumbox to connect to this db via SSH.
Have a great day :)
In my case i want to scan all data each time to compare with my response to know where update occur or insert and according to that i want to perform other requests...so what could be the best possible way?
Thank u for sharing. Wud b cool if u mention filtering in the video
Great suggestion!
How do you not have more subs? your channel is great!
Keep it up mate!
Thanks a ton!
Great video. Thank you so much!
Thank Hamza, super glad it was helpful!
also, with partiQL you can query table with a value without cretaing a GSI on that column. is that a new feature?
Hi Rohit, the thing you need to be careful about using PartiQL is that performing queries are non-indexed columns can result in a scan operation instead of a query. This can cause high costs and poor performance for these types of operations. Hope this helps clarify.
Sorry, I would like to ask a question. At 6:18, you said that item with the partition key 3 will be stored in the same partition as item with partition key 1. But aren't they having different hash value after you put their partition key into the hash function? So why did they end up in the same partition?
Hi 黃翌軒,
Depending on the size of your table, DynamoDB may store values with a different partition key on the same physical partition. As your data size or throughput demands grow, DynamoDB can re-split these partitions into smaller ones.
Hope this helps.
Is there a reason to use DAX over CloudFront??
Very nicely explained indeed. I have seen some examples where the Partition Key is an UUID value. However, in some cases, I need my primary key to be an auto-increment integer like the one many SQL databases provide. What is your suggestion?
Hi Kyriacos,
Unfortunately auto-increment isnt supported in DynamoDB. Generally speaking, in a NoSQL database it is advised to use a meaningful primary key so you can quickly retrieve your data by said key. Your access pattern should define what your primary key should be (even a composite key could be used).
Your requirements make me think a traditional relational database could be better suited for your use case.
How did you define a date as sort key? I do not see type date. Do you define date as string?
Hi Rohit date is just a string in this
Excellent video and information, keep doing such quality content
Thanks you so much!
Awesome .. Simply put
Thank you!
At timestamp 2:29 , shouldn't there be three partition created.Or I am getting it wrong here
Very clear, easy to understand, thank you!
Glad it was helpful!
Most useful video
Thanks Yogitha!
Suppose if we design sort key as countrycode#date, how we will be able to sort date only as we have country code along with it
Great video Thanks
Thanks Ray!
great explanation!
Thanks Ishaan!
7:03 Why partion 3 row is in Partition 1 ? Shouldn't it be under a new partition 3 ?
Please help, this is my only doubt left .
Double this question
The location the partition lands on is independent on the data. Rows that have differnt partition keys can land on the same partition.
So in an amplify project for example, this schema is defined in the graphql schema yes? Do you have any such videos. I found a very good post on Dev.to from Nader Dabit about creating a robust graphql schema with directives, thanks!
Very helpful thank you!
You're very welcome!
Great video. Just one doubt. How to design my table if i have more than 2 fields for uniqueness (let's say 3 fields defining uniqueness. For example, in vehicle, make+model+year is unique)
Great Video, thank you for all the information! I have a question about filtering - which solution would you approach if you wanted to filter with multiple conditions? Equivalent to: WHERE country=„…“ & age=„…“ & … and so on (note: country and age are not pk or sk and without using filterExpressions)
Or is there not a nice solution with dynamodb to that and aurora would be a better choice?
Thank you in advance
wow only 1.93K subs.. what a crime. Subbed!
Thank you so much Calvin for your kind words!
Hi. When designing a DB schema in DynamoDB how do you store the traditional lookup values like countries? In it's own table country with countryCode, countryName attributes? What's the best practice here? Thanks.
Very Nice Explanation :)
Thank you Sagar!
Thank you for this tutorial 🙏🙏🙏
You're so welcome Jeffry!
Excellent video . It really helps. Thanks a lot.
Glad it helped!
Nicely explained! Subscribed :)
Awesome, thank you!
Very useful.. thanks for the video, AWS docs are jargon :P
Glad it helped!
Hey! how to find my table's details or description on AWS DynamoDB?
Hi Mohammed, this should be in the Overview tab on the console after clicking the table name.
Thanks for wonderful video
You're very welcome kunal!
Thank you for the info!
Is GSI a new feature since it’s not mentioned in this informative video
Yep that sounds correct
how to use update method with combination of partition key and sort key?
Speaking of other strategies: How do you create composite primary key with 3+ columns?
Hi Miral,
I think it would be as simple as just appending each value using a delimiter such as value1-value2-value3. Keep in mind though this pattern requires you to know all these values before querying in order to find your records in Dynamo.
Hope this helps,
Daniel
@@BeABetterDev Thank for reply. That's the catch, the third column value is a timestamp and for that reason, can't perform BatchGetItem.
Really good
Thanks!
how many items can I set in the same partition key?
Hi ruru,
There is no limit. However keep in mind that there is a 10gb max partition size in dynamo. I believe the partition splits afterwards. If you have too much throughput on the same partition key you make get throttling errors.
@@BeABetterDev thanks for answering me, the video was very helpful😁👍
Thanks, it's a great video :)
Glad you liked it!
Very nicely explained. Keep it up :)
Thanks Akshay!
Please can we get a tutorial. Where I can use curl to create an presigned url for s3 bucket object to load an file and download a file .
Great content
Thanks Jeffin!
what if partition key itself is unique an there are 1 million records example email id as partition key in user table?will there be a problem with too many partitions?
Hi Gaurav,
Dynamo would split your data across multiple partitions in that case. There is no limit that I am aware of regarding number of partitions.
Awesome!! Thanks for this. It was very helpfull.
You're welcome!
Great video, I got a question through an example If I had a sign up method in app and I can do it by email or phone number I was thinking about primary key because of cognito Id user, and that user sell products using many categories can have those products and categories under same table and row and query it by it's I'd, it's a good practice ? thanks
Thanks amazing video
Thank you !
Is it possible for you to create a video on how to create DynamoDB table - having LSI and GSIs through Cloudformation script and add items in it using put_item from boto3 python SDK?
6:20 How does the item with Account Id = 3 goes into Partition 1? Shouldn't it go to Partition 3 since the Account Id attribute is defined as partition key?
IN my understanding, When the hash function is applied on the account Id it generated the target as partition 1. E.g. id % 2 ==0 will go in partition 2 and rest in 1.
Hope it helps
how to pagination using dynamoose
Very Knowledgeable video Clare my table schema confusion. Please do share the Github link for code reference for serverless application if you have any..
Thank you Rhushikesh! I will post github links soon. :)
Most of the time, we depend of business rules.
I mean, recently, we create a table with just an uuid (for each object). Then later, The business would like to retrieve thoses objects but without knowing the uuid, they need to retrieve the object by the name And lastModificationDate (between two dates).
How do you manage that ? You have to create some gsi...
But we do not have always all the information when we start the archtecture. This is very complicated when your project evolves with anothers features that you do not anticipate.
This is my pain using dynamodb over mysql before.
The use case for Dynamodb is driven by high performance, so ultimately the business needs to understand the complexity of new queries. You can also utilise something like dynamo streams to update something like elastic search or ETL the data into a relational DB for complex queries.
thanks dude
Thank you
You are very welcome!
nice video, thanks u!!!
Glad you liked it!
Thank you, just subbed. I'm about to get my hands dirty with AWS for the first time, use case is building an API and a PWA with React, was thinking of using the serverless framework, some advise to steer me in right direction would be greatly appreciated, I'm also doing my own research so it looks like I will need the combination of the following..API Gateway, Lamda functions, Dynamo DB, Cognito for backend, S3 for hosting, serverless for my framework, I'm sure theres more, thank you!
Hi Lardosian! Welcome to the channel.
Great to hear you're getting familiar with AWS.
In terms of your use cases, It sounds like you've identified the right AWS technologies for your use cases. Here are some additional videos I think could be helpful.
IAM - IAM permissions are the bread and butter of AWS. You should get very familiar with them - ua-cam.com/video/y8cbKJAo3B4/v-deo.html
Lambda Introduction - ua-cam.com/video/iUIWG0h2D84/v-deo.html
Building a REST API with API Gateway + Lambda - ua-cam.com/video/uFsaiEhr1zs/v-deo.html
Basic DynamoDB Operations - ua-cam.com/play/PL9nWRykSBSFgmcJMpr7XAk3BC0VPAK_i-.html
Hope this helps!
@@BeABetterDev Thank you very much, apologies for the late reply.
How can a row with partition key "3" end up on Partition 1? 3:25
Hi Niclas. Partition assignment is completely random. Hope this clarifies.
Nice one !! i just subscribed
Thank you!
Can you please share the slides
Thank you. Well explained. Another subscriber here :-)
Thank you so much Venkat! Welcome to the channel.
you rock!
Thanks for this very insightful session. Just would like to know where I can ask questions. I have one doubt about PutItem, which is not related to this video.
Thanks Abhay! feel free to ask here
I have asked it in your other video related to inserting items in DynamoDB.. Thanks
Good video.. after spending over a decade in SQL database.. its challenging to understand how SQL schema could be translated/redesigned to NOSQL. If you could make a video by taking example of AdventureWorks to show how you would design that use case in NOSQL, that would be great.
How many partition Key could dynamodb could have??
Hi Jivan, technically it is infinite.
I must be missing something fundamental about Dynamo because I keep looking up how to retrieve all items in my table in a sorted order, but I keep ending up on articles and videos like this where they talk about read capacity and partitioning. I want SELECT * FROM table ORDER BY time ASC. I get the feeling I could give everything the same partition key and unique sort key and have them come back ordered but that has to be the wrong way to achieve my goal.
I am not sure of your exact use case and why you need to do a Select * FROM table, but I am pure guessing from the way you state your comment that more than likely you are trying to apply a relational DB mindset onto a NoSQL database, in this case DynamoDB. If you want to expand your comment, I am happy to try and help you though.
@@NoSQLKnowHow I have been messing around with Dynamo to build a serverless version of my blog. The traffic I get would be well under the free tier limit for both Lambda and Dynamo, so I could have a blog hosted for cheap. As an example of what I'm trying to do, I would call Dynamo to retrieve my blog posts and have them return in order of the sort key which is a timestamp. So far, I can only call scan and sort them after they return but eventually I'll want to do pagination and only return ten of the most recent posts.
Hey Stephen!
Based on your description, it sounds like you're trying to use Dynamo as if it were a traditional Relational Database. NoSql databases like Dynamo excel at quick retrieval for known values where you know the key (either singular or composite) that you are looking for. It can be extended to query for a key + a second attribute (sort key), but its functionality is pretty limited.
Concerning your specific problem, you can solve this by having a table setup where your partition key is something like blog id (singular value) and your range/sort key is creation date. The combination of these values should be unique (as you can never create two blog posts at the same time). Using this approach, you can perform a paginated query in descending order on the sort key to get top X results (set your LIMIT to be X on your query). This isn't an ideal setup but should solve your problem.
Hope this helps!
Is this tutorial valid for 2022
Yes!
When you say 'sort key', I have been hearing 'sword key' instead, my bad lol