All you need to know about DynamoDB Partitions

Поділитися
Вставка
  • Опубліковано 1 гру 2024

КОМЕНТАРІ • 26

  • @atehrosius
    @atehrosius 3 роки тому +3

    Clear and Concise DynamoDB Partitions breakdown. Thanks Alex. ..Subbed.

  • @sanjeevrajora7335
    @sanjeevrajora7335 Рік тому +2

    very nice explanation on partitions ,thanks for the video

  • @_marcelolima
    @_marcelolima 9 місяців тому

    Great concise video! Much appreciated the effort on making those videos, Alex!

  • @rickfarina9835
    @rickfarina9835 3 роки тому +2

    Excellent review of partitions, how, and why... Much appreciated Alex. Thanks!

  • @devprakash5320
    @devprakash5320 3 роки тому +3

    Thanks Alex , it was helpful

    • @alexbdebrie
      @alexbdebrie  3 роки тому

      You're welcome, Dev! Glad you liked it.

  •  5 місяців тому +1

    Great video, thanks!

    • @alexbdebrie
      @alexbdebrie  5 місяців тому

      Thanks! Glad you liked it :)

  • @Bahbahee
    @Bahbahee 2 роки тому +2

    Very useful video Alex. Thank you. Can there be more than one sort key in the composite primary key? For example if partition key is customerId#, could there be 4 other sort keys such as customerAddress# [along with attributes], customerDemographicInfo#[along with attributes], customerAdditionalInfo#[attributes], etc? I am trying to create a one to many relationship for unique customers in my table to their many addresses, contacts, etc.

    • @alexbdebrie
      @alexbdebrie  2 роки тому

      Thanks, Bahar!
      For your question, will these each be different items in your table? If so, the answer is yes -- you can have different items with different sort key patterns. Let me know if I'm misunderstanding -- feel free to email me or DM me on twitter.

  • @tarassasai6424
    @tarassasai6424 2 роки тому

    awesome! thanks a lot for this video!

  • @andriys5772
    @andriys5772 3 роки тому +2

    Тhank you for your book!
    It helped me a lot.

  • @jvjfranca
    @jvjfranca 2 роки тому +1

    Great! Thanks so much!

  • @adityashekharsingh2669
    @adityashekharsingh2669 6 місяців тому

    nice explaination

  • @RahulAhire
    @RahulAhire 3 роки тому

    Does aws keyspace let you know how much clusters is being running for that table? 4:33

    • @alexbdebrie
      @alexbdebrie  3 роки тому

      Nope, this is all hidden from you. You can sneakily find out the number of partitions in your DynamoDB table by examining DynamoDB streams, but it shouldn't really help you much.
      Project to find number of partitions here: github.com/zaccharles/dynamodb-table-partitions

    • @RahulAhire
      @RahulAhire 3 роки тому

      @@alexbdebrie no, I'm actually talking about aws Apache keyspace - 4:33
      Is it visible.

    • @alexbdebrie
      @alexbdebrie  3 роки тому +1

      @@RahulAhire Ahh gotcha. No, I don't think so.

  • @wacalu
    @wacalu 3 роки тому

    Hey in ua-cam.com/video/ErPrf74RUDY/v-deo.html you say "remove partitions". Does DynamoDB actually remove partitions?

    • @alexbdebrie
      @alexbdebrie  3 роки тому +1

      Good catch! They don't really tell us (we don't need to know!), but I believe DynamoDB doesn't actually remove partitions after they're created.
      That said, because we don't need to know, they could change that in the future if needed.