JMeter - how to handle very large xml output files for lengthy tests

I want to run JMeter for a long period of time (6+ hours) to check the stability of the web application under load.

The problem is that the XML output files for jmeter become huge and very slow to parse using XSL.

Is it possible to:

  • Send the output to the database (mysql, etc.)
  • Divide the outputs into multiple XML files as soon as they reach their maximum size.
+3
source share
2 answers

Inside Jmeter, none of your suggestions are possible. You may have a third-party tool / script to split the XML file after launch.

, ? , ? : . .

+1

, JMeter 3.1.

jmeter.properties(apache-jmeter-3.1/bin) jmeter.

httpsampler.max_bytes_to_store_per_request:

httpsampler.max_buffer_size: , .

FYI ( JMeter 3.1), JMeter 2 , 9223372 . , , . . httpsampler.max_bytes_to_store_per_request.

" " JMeter 3.1

0

Source: https://habr.com/ru/post/1775888/


All Articles