Is there a limit on how much JSON can hold?

Json

Json Problem Overview


I am using jquery, JSON, and AJAX for a comment system. I am curious, is there a size limit on what you can send through/store with JSON? Like if a user types a large amount and I send it through JSON is there some sort of maximum limit?

Also can any kind of text be sent through JSON. for example sometime I allow users to use html, will this be ok?

Json Solutions


Solution 1 - Json

JSON is similar to other data formats like XML - if you need to transmit more data, you just send more data. There's no inherent size limitation to the JSON request. Any limitation would be set by the server parsing the request. (For instance, ASP.NET has the "MaxJsonLength" property of the serializer.)

Solution 2 - Json

There is no fixed limit on how large a JSON data block is or any of the fields.

There are limits to how much JSON the JavaScript implementation of various browsers can handle (e.g. around 40MB in my experience). See this question for example.

Solution 3 - Json

It depends on the implementation of your JSON writer/parser. Microsoft's DataContractJsonSerializer seems to have a hard limit around 8kb (8192 I think), and it will error out for larger strings.

Edit: We were able to resolve the 8K limit for JSON strings by setting the MaxJsonLength property in the web config as described in this answer: https://stackoverflow.com/a/1151993/61569

Solution 4 - Json

Implementations are free to set limits on JSON documents, including the size, so choose your parser wisely. See RFC 7159, Section 9. Parsers:

"An implementation may set limits on the size of texts that it accepts. An implementation may set limits on the maximum depth of nesting. An implementation may set limits on the range and precision of numbers. An implementation may set limits on the length and character contents of strings."

Solution 5 - Json

There is really no limit on the size of JSON data to be send or receive. We can send Json data in file too. According to the capabilities of browser that you are working with, Json data can be handled.

Solution 6 - Json

If you are working with ASP.NET MVC, you can solve the problem by adding the MaxJsonLength to your result:

var jsonResult = Json(new
{
    draw = param.Draw,
    recordsTotal = count,
    recordsFiltered = count,
    data = result
}, JsonRequestBehavior.AllowGet);
jsonResult.MaxJsonLength = int.MaxValue;

Solution 7 - Json

Surely everyone's missed a trick here. The current file size limit of a json file is 18,446,744,073,709,551,616 characters or if you prefer bytes, or even 2^64 bytes if you're looking at 64 bit infrastructures at least.

For all intents, and purposes we can assume it's unlimited as you'll probably have a hard time hitting this issue...

Solution 8 - Json

What is the requirement? Are you trying to send a large SQL Table as JSON object? I think it is not practical.

You will consume a large chunk of server resource if you push thru with this. You will also not be able to measure the progress with a progress bar because your App will just wait for the server to reply back which would take ages.

What I recommend to do is to chop the request into batches say first 1000 then request again the next 1000 till you get what you need. This way you could also put a nice progress bar to know the progress as extracting that amount of data could really take too long.

Solution 9 - Json

The maximum length of JSON strings. The default is 2097152 characters, which is equivalent to 4 MB of Unicode string data.

Refer below URL

https://docs.microsoft.com/en-us/dotnet/api/system.web.script.serialization.javascriptserializer.maxjsonlength?view=netframework-4.7.2

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJasonDavisView Question on Stackoverflow
Solution 1 - JsonAmberView Answer on Stackoverflow
Solution 2 - JsoncdigginsView Answer on Stackoverflow
Solution 3 - JsonAnthony FView Answer on Stackoverflow
Solution 4 - JsonstlearyView Answer on Stackoverflow
Solution 5 - JsonChaitanya BelsareView Answer on Stackoverflow
Solution 6 - Jsonmathias.hornView Answer on Stackoverflow
Solution 7 - JsonPerfect64View Answer on Stackoverflow
Solution 8 - JsonJkyle LandichoView Answer on Stackoverflow
Solution 9 - JsonShashi KesharView Answer on Stackoverflow