Global web icon
stackoverflow.com
https://stackoverflow.com/questions/32678325/how-c…
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) chunks and then batchWriteItem into table. Note: DynamoDB only allows writing up to 25 records at a time in batchinsert. So we have to split our array into chunks.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/38733363/dynam…
DynamoDB put-item ConditionalCheckFailedException
DynamoDB put-item ConditionalCheckFailedException Asked 9 years, 4 months ago Modified 1 year, 6 months ago Viewed 127k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/18896329/expor…
Export data from DynamoDB - Stack Overflow
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 import that data into my local dynamodb instance so my application can work with local copy of data instead of production data.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/36753861/how-c…
How can I join tables in AWS DynamoDB? - Stack Overflow
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 other tables.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/70343666/float…
Float types are not supported. Use Decimal types instead
You should keep the types when possible. Check the M S R's solution If you want to store the value as a Number type in DynamoDB, then you just need to convert the float to a Decimal. For example, if using the boto3 Table resource:
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/21794945/dynam…
Dynamodb scan in sorted order - Stack Overflow
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 is to use a hashkey which is assigned the same value for all data in your table.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/25886403/dynam…
DynamoDB : The provided key element does not match the schema
The documentation for DynamoDB has always been a challenge. I think the root cause of the problem here is the distinction between the base DynamoDB client and the higher-level Document Client.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/24275243/writi…
Writing dynamoDB "OR" condition query? - Stack Overflow
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 but all the condi...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/21381744/diffe…
Difference between local and global indexes in DynamoDB
Difference between local and global indexes in DynamoDB Asked 11 years, 10 months ago Modified 1 year, 5 months ago Viewed 120k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/27329461/what-…
What is Hash and Range Primary Key? - Stack Overflow
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 of the hash and range key. You can make direct gets on single rows if you have both the hash and range key, or you can make a query against the sorted range index.