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 …

  2. Dynamodb local web shell does not load - Stack Overflow

    Dec 30, 2021 · DynamoDB Local Web Shell was deprecated with version 1.16.X and is not available any longer from 1.17.X to latest. There are no immediate plans for a new Web Shell …

  3. amazon web services - dynamodb PartiQL SELECT query returns ...

    Jan 25, 2021 · I am using Amplify to setup a dynamodb with a corresponding lambda using the amplify blueprint for dynamodb. Accessing the dynamodb the "classic" way with …

  4. How does the DynamoDB partition key work? - Stack Overflow

    Aug 9, 2017 · Hence, what we call Partition Key in DynamoDB is nothing but Primary Key representing unique item in the table (with the help of sort key, in case of composite key). It …

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

  6. DynamoDB not as scalable as it seems? - Stack Overflow

    Nov 13, 2023 · Trust me, DynamoDB is as scalable as it seems. Let me help with your concerns: Scenario 1 You create an on-demand table, which you get 4 partitions to serve your data. …

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

  8. User is not authorized to perform: dynamodb:PutItem on resource

    4 Granting full dynamodb access using aws managed policy AmazonDynamoDBFullAccess is not recommended and is not a best practice. Try adding your table arn in the resource key in the …

  9. How to check if DynamoDB table exists? - Stack Overflow

    I'm a new user in boto3 and i'm using DynamoDB. I went through over the DynamoDB api and I couldn't find any method which tell me if a table is already exists. What is the best approach …

  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.