Testing / Apache JMeter Interview questions
Why is the View Results Tree listener discouraged during load runs?
View Results Tree stores the full request and response data - headers, body, everything - for every single sample it displays, which consumes a large and rapidly growing amount of memory as the number of samples increases during an actual load test.
Because it also renders that data in a live tree UI, it adds real-time rendering overhead on top of the memory cost, competing directly with the resources JMeter needs to generate load and potentially skewing the very response-time results being measured.
It's genuinely valuable during test plan creation and debugging, when inspecting individual request/response pairs helps verify correlation and assertions are working correctly, but it should be disabled, or its result-storage settings reduced, before running the test at any meaningful scale.
More Related questions...
