About 50 results
Open links in new tab
  1. 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 array into (25) …

  2. What is the difference between partition key and sort key in amazon ...

    May 16, 2019 · With contrast to primary key, composite key and candidate key, what is a partition key and a sort key in dynamodb?

  3. Dynamodb what are WCU and RCU? - Stack Overflow

    Mar 20, 2022 · As you said, RCU and WCU measures the number of reads and writes (respectively) per second. However, for obvious reasons, doing a 10 byte read is not billed the same as a read of the …

  4. How to fetch/scan all items from `AWS dynamodb` using node.js

    If you would like to get the data from DynamoDB without using Hash key value, you need to use Scan API. Note: The Scan API reads all the items in the table to get the results.

  5. 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 use keys in …

  6. What data type should be used for timestamp in DynamoDB?

    Mar 10, 2022 · In DynamoDB, there are a couple of data types that can be used to store dates. The recommended approach is to use the "String" data type and follow a specific date format such as …

  7. Maximum size of DynamoDB item - Stack Overflow

    Feb 12, 2017 · Does anyone know what is the maximum size of Item payload that amazon dynamo DB supports? I am sure its buried in documentation somewhere. My follow-up question is that when you …

  8. DynamoDB - Key element does not match the schema

    The provided key element does not match the schema There could be two possible problems here: You are only providing half of your primary key. For the primary key, you must provide all of the attributes. …

  9. How to calculate Read Capacity Unit and Write Capacity Unit for …

    Feb 27, 2017 · If you need to read an item that is larger than 4 KB, DynamoDB will need to consume additional read capacity units. The total number of read capacity units required depends on the item …

  10. python - Dynamodb - Inexact: [<class 'decimal.Inexact'>, <class ...

    Aug 2, 2022 · Dynamodb - Inexact: [<class 'decimal.Inexact'>, <class 'decimal.Rounded'>] Ask Question Asked 3 years, 8 months ago Modified 2 years, 1 month ago