2

I'm using golang to store data to dynamo. I can save and retrieve the object in golang code no problem, however, when i go to the table items in aws console and click in any of the items stored it doesn't let me uncheck DynamoDB JSON checkbox to see the data in plain JSON not DynamoDB JSON.

Any ideas of what I'm missing here ?

3
  • Are you doing Scan or Query in the console? Do you have indexes? Commented Apr 2, 2019 at 18:40
  • It sounds like you're not having any issues in Go so this isn't a Go question, or really a programming question. You might try Server Fault instead of StackOverflow. Commented Apr 2, 2019 at 18:57
  • So by console i mean the AWS website table view, and if that makes any difference I'm not doing any operation against the data just loading the first 10 items. I do have an index, but i don't think that's really relevant Commented Apr 2, 2019 at 22:08

1 Answer 1

3

Sometimes AWS just can not convert the DynamoDB JSON to normal JSON due to some technical limitation.

Such as seen here

When we insert a number with greater than 15 digits, DynamoDB enforces to use DynamoDB JSON to insert such numbers as DynamoDB JSON can handle numbers upto 38 digits precision.

Also this is not related to Coding question and should not be asked on SoF

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.