java - Is it possible to use JMeter to make multiple HTTP/2 requests in one connection (multiplexing)? -


i trying run restful api performance test against web app using jmeter. in actual case, web site make 4-5 asynchronous api calls web app under http/2 in 1 connection using multiplexing. have http2sampler plugin installed in jmeter have no idea how make call within 1 tcp/ip connection.

there's no built-in jmeter sampler provides functionality out of box. can, however, go 1 of following options:

  1. use http/2 sampler developed else. quick search brought couple: this , this. never used them, cannot speak whether stable, , of course can tell if match needs.

  2. develop custom jmeter java sampler. option if neither of above samplers can used, , don't want spend time learning details jmeter api develop own custom plug-in.

  3. develop own http/2 plug-in. option more expensive option 2, if willing invest flexible sampler variety of features, way go. best place start @ source code of existing samplers, such ones mentioned in 1., or other samplers available through jmeter-plugins.org

  4. and fastest option write code in beanshell sampler. drawback of course maintainability of such code, potential issues performance, error handling , on. option 1 time test simple flow of operations.


Comments

Popular posts from this blog

javascript - Create a stacked percentage column -

Optimising Firebase database by automatically overwriting data -

javascript - Angular UI-Grid customTemplate directive causing rows to load slowly/? -