Amazon/AWS DynamoDB Tutorial for Beginners | Create Your First DynamoDB Table and Items

Поделиться
HTML-код
  • Опубликовано: 7 сен 2024

Комментарии • 74

  • @sedk0022
    @sedk0022 Год назад +24

    You can't believe how much I enjoy the calmness and simplicity of your videos. Thank you for providing us with those great and straightforward tutorials.

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Год назад +3

      I don't know that anyone has called the videos calm before...I love it! 🥰 So glad they're helping. Thanks for supporting the channel!

    • @zroqs
      @zroqs Год назад

      ​@@TinyTechnicalTutorialsthe best on RUclips!

  • @matthewteves1681
    @matthewteves1681 Год назад +9

    Your videos are so helpful. Your explanations are so clear. I love the Seinfeld references, too. 🙂 Thank you for your hard work.

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Год назад

      Thanks so much, Matthew! And I like that someone got the Seinfeld references! 😁

  • @Bastian-Remi
    @Bastian-Remi Год назад +1

    These are exactly the kind of how-to videos I personally look for and enjoy the most. Quick, and to the point when I want a simple starter or rundown.
    Thank you!

  • @zeromt3577
    @zeromt3577 Год назад +4

    Very well done! Especially nice that you showed the json array and nested object example. Also good demo of the ragged key-value-pair view of customers with different sets of key fields.

  • @KrishnaDiamesso
    @KrishnaDiamesso 18 дней назад +1

    😀Love it. Art Vandalay. The Architect or the Latex Salesman. Best show on earth. Funny and smart.

  • @amirlatifim
    @amirlatifim 29 дней назад

    Art Vandelay! Good one! Also Bon Sacramento!

  • @faisalee
    @faisalee Месяц назад

    Brilliant! Subbed for the simplicity and to the point"ness" of this video. I learned exactly what I came to learn :)

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Месяц назад

      Welcome to the channel, Faisal! 👋 Thanks for watching, and for the nice comment! 🙏🌟🤓

  • @GangaRajagopalan
    @GangaRajagopalan 3 месяца назад

    It's very clear way to understand how to create dynamodb. Thanks a lot 😊

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  3 месяца назад

      Yay! I'm so glad it was helpful. Thanks for watching, and for the nice comment! 🙏🌟🤓

  • @andriy123
    @andriy123 Год назад +1

    Its absolutely brilliant how flexibility is presented in this video, thanks for creating it ..

  • @mr638
    @mr638 Год назад +1

    simple way of explaining... thx for the video

  • @CalSticks
    @CalSticks Год назад +1

    Seinfeld fan?
    Thanks for the video - really useful bitesize info.

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Год назад +3

      Ha! You're the first one to ask! :) One of the best shows ever, in my humble opinion. Thanks for watching!

  • @bobsutube
    @bobsutube Год назад

    That was excellent. Conveyed a lot of understanding in a short video - thanks so much - I'm now subscribed to check out more of your tuturials

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Год назад

      Awesome, thank you! Welcome to the channel! 🙏🌟🤓

    • @bobsutube
      @bobsutube Год назад

      @@TinyTechnicalTutorials
      One small thing you do that I find is effortless but means so much is your use of context naming during your demos. Most people will create demos using naming like "bucket1", "function1","event1", "role1", etc, when it is 10 times more helpful to viewers to use "myTinyFlixFunction", "myTinyFlixRole". I've always done similar for my own presentations and really appreciate this effort in your demos. Good stuff

  • @gilbertos.s1376
    @gilbertos.s1376 Год назад

    Learning from Brazil, easy and clearly your explanation right to the point!

  • @caiyu538
    @caiyu538 Год назад

    Simple but clear explanation.

  • @runyalen
    @runyalen 5 месяцев назад +1

    Quick question..
    In relation DBs we do colulmes created_at / updated_at.
    Do you do that in dinamoDB or nosql ?

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  5 месяцев назад +1

      Hey ReivenIV! 👋 Great question! DynamoDB doesn't automatically manage "created at" or "updated at" timestamps for items in the way that some relational databases do. You can manually add/update those attributes, though...just takes a little more manual effort. 😊

  • @life_xplorers
    @life_xplorers Год назад

    You are awesome I love your videos. You have such an outstanding way of explaining things. ❤ Thank you so much.

  • @abhishekrathod7
    @abhishekrathod7 6 месяцев назад

    Simple and Straightforward 👍

  • @rafaelnicholas1044
    @rafaelnicholas1044 Месяц назад

    amazing content.

  • @B3T0M4N
    @B3T0M4N Год назад

    wow, you are an AWS Ninja!

  • @ChanceMinus
    @ChanceMinus Год назад

    Brilliant! Extremely helpful. Thank you.

  • @jesseh522
    @jesseh522 8 месяцев назад

    ART VANDALAY!

  • @hikosaemon
    @hikosaemon Год назад

    I was thinking of doing a basic Database project using RDS but I wonder if this might not be a better way to do it..? I assume you can batch input data from a CSV file to DynamoDB? And read it with Quicksight?
    If I was making a really simple app from scratch - thinking something like having buttons indicating a type of activity and another group of buttons indicating mood, and storing button presses with date and timestamps - is there any reason this would be better to do with RDS?
    I'm tempted now to try with this instead... :)
    Thanks again, I love these tutorials. I'm not certified and looking for hands on mini projects to get more familiar with the services. Your vids are really great for people like me!

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Год назад +1

      Hi Hikosaemon! Thanks for watching...I'm so glad you're finding the videos helpful! 🙏😊
      For a simple app like you're talking about, RDS or DynamoDB would technically work. DynamoDB is going to be lighter weight, easier to set up, and easier to change in the future if you need to (you don't have to update schemas and relationships and such). It will also be a lot more scalable and performant, if you plan to grow it in the future (though it sounds like you're starting small).
      Yes, you can do batch ingest from a CSV file. Here's one way to do that: app.pluralsight.com/library/courses/developing-alexa-skills/table-of-contents
      For QuickSight, here's a walk-through of how to do that (it uses Amazon Athena to query the data from DynamoDB first, then uses QuickSight to visualize it): dev.to/awscommunity-asean/visualising-your-amazon-dynamodb-data-with-amazon-quicksight-14n4.
      Hope that helps! Definitely lots of options. :)

    • @hikosaemon
      @hikosaemon Год назад +1

      @@TinyTechnicalTutorials Wow, thank you!

  • @naren06938
    @naren06938 Год назад +1

    I seen some Mongo DB projects, Can u make small video Extra benefits if any in this Dynamo DB compared to Mongo DB, i hope Mongo DB Atlas also similar cloud characteristic

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Год назад

      Hi Narendra! I'll add this to my list for future videos. In the meantime, here's a comparison chart that might help? www.mongodb.com/compare/mongodb-dynamodb

  • @AllAboutDataTechnology
    @AllAboutDataTechnology 8 месяцев назад

    good video, easy to follow. thanks

  • @danieltesfay6690
    @danieltesfay6690 Год назад

    Great tutorial as always!!!

  • @EddieMao
    @EddieMao 4 месяца назад

    Like your tutorials always!

  • @Tank10A
    @Tank10A 5 месяцев назад

    Thanks

  • @babakhabibnejad508
    @babakhabibnejad508 Год назад +1

    Hi Amber, do you have any plans to make a course for AWS SAA? I took your cloud practitioner course and just passed the exam!

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Год назад +2

      CONGRATS, Babak!!! This is wonderful news! :) I actually have an SAA course releasing hopefully in the next week with Zero to Mastery. I've made myself a reminder to loop back here with a link once it's published. Hang tight!

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Год назад +1

      Hi Babak! Quick update on the Solutions Architect course. Things got delayed a bit over the holidays, but we're shooting for next week. Stay tuned! :)

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Год назад

      Hi again, Babak! The Solutions Architect Associate course is finally live! Hopefully worth the wait. Enjoy! :) zerotomastery.io/courses/aws-certified-solutions-architect-bootcamp

  • @krishna-santosh
    @krishna-santosh Год назад

    Thank you. You were spot on

  • @completestudy3602
    @completestudy3602 Год назад +1

    Hello, Im doing a university project where I should run a whiteboard application on atleast two seperate machines within my vpc, each application serving different set of users and I have to demonstrate that the distributed application running in my vpc is consistent in a way that all users will see the same state across different instances. can you help me how can I achieve consistency so that everyonce can see the same state ?
    any tips for this project?

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  Год назад

      Hey Complete Study! Sounds like a fun project! :)
      Can you clarify a bit more about users seeing the "same state"? Do you mean they see the same UI? Or are you talking about session state (for example, storing variables across pages, or adding products to a shopping cart)? The first thing that comes to mind is to set up a load balancer with an auto-scaling group. The auto-scaling group would use a target group that includes your two instances, and then the load balancer would distribute traffic across both instances. I've actually got a video for that: ruclips.net/video/ZGGpEwThhrM/видео.html.
      But depending on the "state" details, there are some additional things you might need to do.

  • @maruthis1921
    @maruthis1921 10 месяцев назад +1

    Can we apply queries to it

    • @TinyTechnicalTutorials
      @TinyTechnicalTutorials  10 месяцев назад

      Yes! 🤓 You can query DynamoDB just like any other database. Here's the API documentation to get you started: docs.aws.amazon.com/amazondynamodb/latest/developerguide/Query.html

  • @KarimFlut
    @KarimFlut Год назад

    great video !

  • @josefinavargas4181
    @josefinavargas4181 Месяц назад

    :D really smart lady.

  • @MrFilip121
    @MrFilip121 5 месяцев назад

    You have very nice voice

  • @SenayDemirKula
    @SenayDemirKula 11 дней назад

    ♥♥♥♥

  • @akj3344
    @akj3344 Год назад

    lol Seinfeld reference.

  • @celestinebanick437
    @celestinebanick437 Год назад

    👀 ρяσмσѕм