About 8,530,000 results
Open links in new tab
  1. DynamoDB put-item ConditionalCheckFailedException

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

  2. How can I import bulk data from a CSV file into DynamoDB?

    In which language do you want to import the data? I just wrote a function in Node.js that can import a CSV file into a DynamoDB table. It first parses the whole CSV into an array, splits …

  3. How can I join tables in AWS DynamoDB? - Stack Overflow

    Feb 15, 2023 · 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 …

  4. Export data from DynamoDB - Stack Overflow

    Sep 19, 2013 · 68 Is it possible to export data from DynamoDB table in some format? The concrete use case is that I want to export data from my production dynamodb database and …

  5. How to use aws-cli with local dynamoDB ? - Stack Overflow

    Feb 16, 2016 · I am struggling with using aws-cli with dynamoDB running on my local machine, could anyone please help. DynamoDB Local with the following configuration: Port: 8000 …

  6. 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 …

  7. Float types are not supported. Use Decimal types instead

    Dec 14, 2021 · I'm using Python 3.7 to store data in a DynamoDB database and encountering the following error message when I try and write an item to the database: Float types are not …

  8. 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 …

  9. Dynamodb scan in sorted order - Stack Overflow

    Feb 15, 2014 · 13 As of now the dynamoDB scan cannot return you sorted results. You need to use a query with a new global secondary index (GSI) with a hashkey and range field. The trick …

  10. Is it possible to ORDER results with query or scan in DynamoDB?

    Is it possible to ORDER results with Query or Scan API in DynamoDB? I need to know if DynamoDB has something like ORDER BY 'field' from SQL queries? Thanks.