Hi I currently have a list of dictionaries I am trying to insert into DynamoDB (each dict as an item). Each item having a hashkey and label1,label2,...label3000 key/value pairs with label# being the key and a string as the value pair. Some of my items have up to label fields. Is this a problem when using put_item in DynamoDB? Currently, the label# keys within each dictionary are unordered, and when I go to insert each item it is only adding 19 of the fields.
↧