Does Apache JMeter support HTTP / 2 requests?

Does JMeter 3.2 support HTTP2?

+4
source share
3 answers

From HTTPClient 4.5 white papers :

Standard, pure Java, implementation of HTTP versions 1.0 and 1.1

SO, you need to wait for HTTP / 2 to be implemented in the libraries HTTPClient, and Jmeter will implement HTTP2 using the library and create a sampler for the same.

0
source

To request HTTP / 2 requests, you can use the plugin for jmeter, for example: https://github.com/syucream/jmeter-http2-plugin

From the readme file:

  • Netty 5 (Alpha3 +) netty-tcnative .
  • HTTP2Sampler.jar, netty-all.jar, netty-tcnative.jar hpack.jar lib/ext jmeter

  • gzip, jzlib.jar .

  • JMeter

  • HTTP2Sampler

+1

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


All Articles