Is there a limiti to wow much data can I store in a JSON field?
I think the limits you would encounter are more based on the database and your memory than any arbitrary settings in Django.
As a test, I created a 100 MB json object and saved it in Postgresql. No problem. (I found an SO post claiming the current max size of a jsonb field is 255 MB. I didn’t try to verify it.)
1 Like