Skip to content
Advertisement

Jmeter : java.lang.IllegalArgumentException: Dimensions (width=27118 height=6346092) are too large. at dummy sampler

I have dummy sampler where added json response of size 220 kb ,

seeing this error whenever clicking on this dummy sampler

current Xss =1.5G ,Xmx=2.5G

JavaScript

Advertisement

Answer

The reason is that your window dimensions (height and width) are somehow too large

JavaScript

you have 27118 * 6346092 which gives 172093322856 which is a little bit larger than 32-bit integer maximum value

The question why JMeter tries to display that large window is something I cannot answer without seeing full jmeter.log file preferably with debug logging enabled, it may be somehow connected with LAF/MacOS, you could try something like choosing another LAF from “Options -> Look and Feel” menu:

enter image description here

or if you cannot access it as well you can use [-J command-line argument]6 like:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement