About 7,860,000 results
Open links in new tab
  1. Query condition missed key schema element : Validation Error

    Doing it in any other way would mean that DynamoDB would run a full scan for you which is NOT efficient - less efficient than using Global secondary indexes. So if you need to query on non …

  2. How to store large arrays in DynamoDB - Stack Overflow

    Jun 18, 2022 · The limit of an object in DynamoDB is 400 KB, see DynamoDB Quotas. For larger attribute values AWS suggests compressing of the attribute in formats such as GZIP, and …

  3. DynamoDB: How can I create a table with nested JSON structure?

    The DynamoDB Java API for instance, introduces Marshaller objects that transforms any Java object into a String so you can store it and fetch it automagically from a DynamoDB attribute.

  4. java - DynamoDB - Object to AttributeValue - Stack Overflow

    Looping through each attribute, how can I convert the value to AttributeValue given that DynamoDB AttributeValue supports Boolean, String, Number, Bytes, List, etc.

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

  6. How to add items in DynamoDB via console? - Stack Overflow

    May 12, 2018 · 6 I am looking to add some items into DynamoDB via console. (Please see screenshot below). When I click the "Save" button, nothing is happening. No new items are …

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

  8. Writing dynamoDB "OR" condition query? - Stack Overflow

    Jun 18, 2014 · 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 …

  9. How to set a boolean field in Dynamo DB? - Stack Overflow

    node.js amazon-web-services boolean amazon-dynamodb asked Feb 16, 2018 at 20:37 Allyl Isocyanate 13.6k 17 87 133

  10. DynamoDB + Store Values as Items or JSON - Stack Overflow

    Before DynamoDB introduced JSON document support, your options would have been limited to separate attributes, or one “String” attribute where you store the JSON representation of those …