https://bz.apache.org/bugzilla/show_bug.cgi?id=65191
Felix Schumacher <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- OS| |All Status|NEW |NEEDINFO --- Comment #1 from Felix Schumacher <[email protected]> --- Can you give a simple jtl file with results, that show this problem? Beware, that the parent sampler will show the duration of all requests as experienced by the "user". If requests are done in parallel, the longest duration will be "counted". I have done a little experiment with a test page, that contains only links to "images": $ cat webapps/ROOT/test.html <img src="image.jsp?one" /> <img src="image.jsp?two" /> <img src="image.jsp?three" /> <img src="image.jsp?four" /> <img src="image.jsp?five" /> <img src="image.jsp?six" /> <img src="image.jsp?seven" /> <img src="image.jsp?eight" /> --- $ cat webapps/ROOT/image.jsp <% Thread.sleep(300); %> OK --- When I call test.html it will take around 600 ms, which makes sense, as with 6 concurrent requests we will have two "images" that will have to wait for 300 ms to get a free worker. -- You are receiving this mail because: You are the assignee for the bug.
