About 7,590,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 use keys in …

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

  3. Dynamodb scan in sorted order - Stack Overflow

    Feb 15, 2014 · Hi I have a dynamodb table. I want the service to return me all the items in this table and the order is by sorting on one attribute. Do I need to create a global secondary index for this? If that...

  4. AWS Dynamo DB Free Tier Limits - Stack Overflow

    Dec 11, 2021 · According to the AWS DynamoDB pricing page you can get 25 WCUs and 25 RCUs in the free tier. So I would say choose DynamoDB standard class table, with Provisioned Capacity, no …

  5. Exporting data from dynamo db to a csv file - Stack Overflow

    Jan 30, 2020 · Then, you can create a DynamoDB trigger to a lambda function that can receive all your table changes (insert, update, delete), and then you can append the data in your csv file.

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

    Apr 1, 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 …

  7. 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 InMemory: false …

  8. How can I implement two sort keys in Dynamo DB?

    Mar 30, 2020 · Generally in DynamoDB you can create Local Secondary Indexes if you need alternative sort key: To give your application a choice of sort keys, you can create one or more local secondary …

  9. what will happen if we insert into dynamo DB with a duplicate hash key ...

    Sep 17, 2012 · I am trying to insert into dynamo DB. When I call the putItem function what will happen if the hash key is already present in the DB? Does the PutItemResult object contain something which …

  10. DynamoDB - Key element does not match the schema

    For the error, 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 …