Number of requests per batch
Max parallel requests
Randomness in request duration
For this configuration, batched execution often provides a good balance between parallelism and resource usage.
Fastest Method
Batched
78.4% faster than slowest
Total Time
871ms
Executes one request at a time, waiting for each to complete before starting the next
Throughput
5.0 req/s
Avg Latency
201ms
Min Latency
163ms
Max Latency
239ms
Executes multiple requests simultaneously, limited by concurrency setting
Throughput
18.7 req/s
Avg Latency
201ms
Min Latency
168ms
Max Latency
235ms
Divides requests into batches, executing each batch in parallel, then moving to the next batch
Throughput
23.0 req/s
Avg Latency
194ms
Min Latency
163ms
Max Latency
238ms
馃弳 Winner!
78.4% faster than the slowest method