Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Response too large to be displayed

Tags:

jmeter

In Jmeter, I have been experiencing "Response too large to be displayed. Size: 340188 > Max: 204800" error in the response data in often. Though I have tried to update the "View.Result.Tree.Max size as 0. But again facing the same issue.

like image 964
Karthik_KKR Avatar asked Mar 24 '14 13:03

Karthik_KKR


People also ask

What is request entity too large error in IIS?

Apr 29 2019 02:33 PM IIS has a limit for the size of the files users can upload to an application. If the file size exceeds the limit, the application will throw “ Error in HTTP request, received HTTP status 413 (Request Entity Too Large) ” error.

What is error 413 (request entity too large)?

If the file size exceeds the limit, the application will throw “ Error in HTTP request, received HTTP status 413 (Request Entity Too Large) ” error. The default file upload size is 49 KB (49152 bytes).

What happens if the file size exceeds the limit?

If the file size exceeds the limit, the application will throw “ Error in HTTP request, received HTTP status 413 (Request Entity Too Large) ” error. The default file upload size is 49 KB (49152 bytes). The application records the log below if user tries to upload a file that is bigger than this size.

Why is my GridView dataset too large for aspx?

As records were added to the tables outside of this view, the Gridview Dataset grew to be too large for the ASPX page to save and recall the viewstate object.


1 Answers

In user.properties file add this:

view.results.tree.max_size=0

Case is important, and '_' not '.' in max_size

Restart jmeter

That's it

See:

  • https://jmeter.apache.org/usermanual/properties_reference.html#miscellaneous

Maximum size (in bytes) of HTML page that can be displayed. Set to zero to disable the size check and display the whole response. Defaults to: 10485760

like image 175
pmpm Avatar answered Nov 17 '22 17:11

pmpm