About 1,470,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. 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. database - What is the recommended way to delete a large …

    DynamoDB typically deletes expired items within 48 hours of expiration. The exact duration within which an item truly gets deleted after expiration is specific to the nature of the workload and …

  4. AWS DynamoDB resource not found exception - Stack Overflow

    Oct 22, 2016 · I have a problem with connection to DynamoDB. I get this exception: com.amazonaws.services.dynamodb.model.ResourceNotFoundException: Requested …

  5. Copying one table to another in DynamoDB - Stack Overflow

    Sep 3, 2012 · What's the best way to identically copy one table over to a new one in DynamoDB? (I'm not worried about atomicity).

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

  7. How to get item count from DynamoDB? - Stack Overflow

    Dec 5, 2014 · 3 DynamoDB now has a 'Get Live Item Count' button in the UI. Please note the production caveat if you have a large table that will consume read capacity.

  8. Formatting DynamoDB data to normal JSON in AWS Lambda

    Sep 22, 2015 · I'm using AWS Lambda to scan data from a DynamoDB table. This is what I get in return:

  9. Delete all items in a DynamoDB table using bash with both …

    aws dynamodb create-table --cli-input-json file://schema.json If you really want to you can delete each item individually and you're on the right track you just need to specify both the hash and …

  10. Local DynamoDB: How to view contents of a table?

    Aug 19, 2019 · Skip the --endpoint-url parameter if you are using a managed version of DynamoDB. If you do not wish to do a scan, perhaps the get-item -command may be suitable.