I need 5 times per second send (open, read, write). I have question. I need to make:
My expectation is that you need to go for Constant Throughput Timer which allows specifying the desired number of requests per minute so if you configure it to 300 requests per minute it will try to keep throughput at this rate which will give you your desired 5 requests per second.
Also be aware that the Constant Throughput Timer can only pause the threads, if the current number will not be sufficient to get 5 requests per second throughput - it won't be able to kick off any extra threads. If this is also something you're looking for - consider Throughput Shaping Timer and Concurrency Thread Group combination.