How to test GRPC client calls from Jmeter ? Any leads will be grateful and appreciable
How to test GRPC client calls from Jmeter ? Any leads will be grateful and appreciable
I've created a Java client and exported as runnable Jar. Same I placed in ext folder and called main
method by beanShell sampler. Please let me know if my process is wrong.
main
Here several things-
Connection close code-
channel.shutdown().awaitTermination(3, TimeUnit.SECONDS);
channel.shutdown();
Below error --
SEVERE: ~~~ Channel ManagedChannelImpl{logId=8735,
target=XXXXX.com:6667} was not shutdown properly!!! ~~~
Make sure to call shutdown()/shutdownNow() and wait until awaitTermination() returns true.
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.