About 6,540,000 results
Open links in new tab
  1. How can I join tables in AWS DynamoDB? - Stack Overflow

    Apr 20, 2016 · I know the whole design should be based on natural aggregates (documents), however, I'm thinking to implement a separate table for localisations (lang, key, text) and then …

  2. DynamoDB put-item ConditionalCheckFailedException - Stack …

    Aug 3, 2016 · DynamoDB put-item ConditionalCheckFailedException Asked 9 years, 3 months ago Modified 1 year, 5 months ago Viewed 127k times

  3. Writing dynamoDB "OR" condition query? - Stack Overflow

    Jun 18, 2014 · I want to query the dynamodb table with boolean or condition like SQL e.g. Get me all the items where attribute1 = "no" or attribute2="no" I tried with scanRequest.withScanFilter …

  4. Dynamodb scan in sorted order - Stack Overflow

    Feb 15, 2014 · Hi I have a dynamodb table. I want the service to return me all the items in this table and the order is by sorting on one attribute. Do I need to create a global secondary index …

  5. What exactly is Limit in Dynamodb? - Stack Overflow

    Aug 1, 2022 · From AWS Docs: A single Query operation can retrieve a maximum of 1 MB of data. This limit applies before any FilterExpression or ProjectionExpression is applied to the …

  6. AWS Dynamo DB Free Tier Limits - Stack Overflow

    Dec 11, 2021 · According to the AWS DynamoDB pricing page you can get 25 WCUs and 25 RCUs in the free tier. So I would say choose DynamoDB standard class table, with …

  7. database - Choice PK and SK in DynamoDB - Stack Overflow

    Apr 4, 2020 · I have the following two items which I need to store in dynamodb Artists Songs The artists have an ID (unique for artists), name and gender. The Songs have an ID (unique for …

  8. What is Hash and Range Primary Key? - Stack Overflow

    Dec 6, 2014 · DynamoDB builds an unordered hash index on the hash attribute and a sorted range index on the range attribute. This means that every row's primary key is the combination …

  9. Exporting data from dynamo db to a csv file - Stack Overflow

    Jan 30, 2020 · Then, you can create a DynamoDB trigger to a lambda function that can receive all your table changes (insert, update, delete), and then you can append the data in your csv file.

  10. How to solve throughput error for dynamodb? - Stack Overflow

    May 17, 2017 · DynamoDB uses a provisioned throughput model for both reads and writes. That means your application will receive errors if it tries to perform more reads or writes than you …