Tables, Items, and Attributes - Amazon DynamoDB Core Concepts | Amazon Web Services

Sdílet
Vložit
  • čas přidán 21. 07. 2024
  • In this quick video, explore the basic building blocks of Amazon DynamoDB, table, items, attributes, and primary keys. You’ll learn what they are, why they matter in DynamoDB, and how to use them effectively to get going quickly with DynamoDB.
    For more in-depth information on these concepts, read the DynamoDB documentation on this topic: go.aws/3bueXZQ
    Scan operations in DynamoDB: go.aws/3OPRXCu
    Query operations in DynamoDB: go.aws/3vwZRtq
    Working with item collections: go.aws/3QbU7NL
    Subscribe:
    More AWS videos - bit.ly/2O3zS75
    More AWS events videos - bit.ly/316g9t4
    ABOUT AWS
    Amazon Web Services (AWS) is the world’s most comprehensive and broadly adopted cloud platform, offering over 200 fully featured services from data centers globally. Millions of customers - including the fastest-growing startups, largest enterprises, and leading government agencies - are using AWS to lower costs, become more agile, and innovate faster.
    #AWSDemos #DynamoDB #Database #NoSQL #CloudDatabase #AWS #AmazonWebServices #CloudComputing
  • Věda a technologie

Komentáře • 26

  • @mujahid509
    @mujahid509 Před 5 měsíci +6

    Was the best and simplest explanation I could find about the PK,SK and how data is stored on DynamoDB..Loved it..Thanks for the video..Looking for more.

    • @amazonwebservices
      @amazonwebservices  Před 5 měsíci +1

      It's our pleasure!😃 Really glad you loved it & found it insightful! 🙌 🤩

  • @FilDoyon
    @FilDoyon Před 11 měsíci +3

    Thank you so much , I'm currently following the learning path on AWS skill builder to pass my AWS Developer Associate Certification exam, but the course I'm doing right now in Skill Builder is a mess.... only text.... hours and hours of text... you can't even imagine.
    I was looking for a video to explain the terminology and concepts of DynamoDB and you totally nailed it man!!
    Thanks so much, this is now clear for me and I now understand what the messy and really badly done AWS courses was trying to explain to me.

    • @awssupport
      @awssupport Před 11 měsíci

      So glad to hear you enjoyed this content, Fil. Best of luck on your certification exam! 🎉 ^RN

  • @SqlWithPrashant
    @SqlWithPrashant Před rokem

    Hi how i can filter a nested map data , any practical demo

  • @neviswarren
    @neviswarren Před 9 měsíci +1

    Excellent overview. Thank you.

  • @Razdvatrichetyre5754
    @Razdvatrichetyre5754 Před rokem +1

    Thank you very much for the video!

  • @Aki-ev6zk
    @Aki-ev6zk Před 9 měsíci +1

    Really great explanation!

  • @jakehorvath9001
    @jakehorvath9001 Před 3 měsíci

    Lovely explanation. Thank you very much.

  • @Oscar-vd4cv
    @Oscar-vd4cv Před rokem

    Thanks, this is really good

    • @awssupport
      @awssupport Před rokem

      Thanks for that feedback, Oscar. 😊 Glad you enjoyed the video. ❤️ ^KS

  • @BeABetterDev
    @BeABetterDev Před rokem +2

    Thanks Kirk!

  • @isaquemoura7759
    @isaquemoura7759 Před rokem +2

    hint -> the english speaking would be a litte bit slow and clear, to make it ieasier to non-native english speakers .

    • @ducthinh2412
      @ducthinh2412 Před rokem +1

      You can change the playback speed to .75 of .5

  • @ogcontraband
    @ogcontraband Před 8 měsíci +1

    DnyamoDB is the weakest thing ever, even storage blobs are better. First there is no way to sort unless you want to sort by the key - you have to pull back every record and sort on the client browser. I'm pissed there is no way to add a 'column' once records are written. I'm about to delete all players data so I can add more features. I now wish I would have just made it a key and 'json' string field that would have been better at least I could add attributes

    • @awssupport
      @awssupport Před 8 měsíci

      Thanks for bringing this to our attention! 👍We've submitted your feedback to the DynamoDB team. We're always looking to improve, so please share your thoughts and comments with us: go.aws/feedback. 📣 ^RW

    • @awssupport
      @awssupport Před 8 měsíci

      Thanks for your patience while I worked on this for you! 😊 I reached out to our Service team and they advised that the best way to get all the details on your request would be via a Support case. You can open one here: go.aws/support-center. You can also share feedback with us here: go.aws/feedback. 📣 ^RW

  • @tommyls4357
    @tommyls4357 Před rokem +4

    Sorry to say, but explaining difficult concepts in a way that a newbie can understand is a skill, which this person lacks. The whole example about using inventory and weapons was hard to follow. Maybe presenter is a gamer himself, so he knows what's going on. But it went over my head.

    • @kddllkzkdkdk4820
      @kddllkzkdkdk4820 Před 8 měsíci +1

      Hey Tommy!
      I will not swear on it but he mentioned that he uses double colons because nothing else uses it. So for me it sounds like it’s done to distinguish things easier. So you know like partition key that armour and weapons share the same parent “inventory”. In C++ you use double colons to access the class definitions method. As I mentioned above I will not swear on it.
      Although I will suggest that in the near future when you encounter such situation again, it would be more beneficent to both you and the teacher to present your obstacles in a clear way. Perhaps there are more people struggling with this concept and would be appreciated by them if you bring it up. Also, your opinion is quite subjective and one cannot demand that everyone can please your way of learning.
      Sincerely, Dani

    • @NoSQLKnowHow
      @NoSQLKnowHow Před 8 měsíci +1

      @tommyls4357 Sorry, you feel this way. I was trying to show with the inventory the concepts that I had gone over prior to that, but in a more concrete way. The inventory could have been anything, really. Groceries, clothing, whatever. What I wanted to show specifically was a one-to-many relationship in DynamoDB, that all of the inventory related to the one user, and could be done in a very scalable way in DynamoDB. That the answers to the questions commonly asked are pre-computed to what was needed in the game example.

    • @NoSQLKnowHow
      @NoSQLKnowHow Před 8 měsíci

      @@kddllkzkdkdk4820 Yes, the double colon is a delineator. Therefore in the DynamoDB API, I could in my app concatenate strings, delineated by the double colon, to piece together the partition key or sort key of the item and therefore not have to SCAN for what I am looking for. I want to pull back just the information the app needs, when it needs it, and nothing more so I am not wasting bytes considering how DynamoDB charges for data. It is super efficient this way, both in terms of performance and in cost. With the DDB API, I could use the QUERY operation and a begins_with() to get just the items I needed "object_type1::sub_object_type::more_data" Therefore I could get all objects that begin with "object_type1::sub_object_type::" that are assigned to user XYZ and this scales REALLY well in DynamoDB.