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:
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.
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.
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
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
Post a Comment