Ferran Basora

Results 107 comments of Ferran Basora

The goal of the `iterations` parameter is to execute this plan _N_ times. All the steps in this plan are executed sequentially. On the other hand, the goal of the...

Sorry for the late answer. I have been really busy these weeks. The problem here is that the benchmark is executed sequentially because actions can have dependencies with previous actions,...

The current behaviour for redirects, right now, is the default from `reqwest`, that follows 10 redirects. You can find more information here: https://docs.rs/reqwest/0.10.4/reqwest/redirect/struct.Policy.html If you think this could be a...

It could be really interesting to add this `follow_redirects` option you mentioned :ok_hand: About `expected_status`, I'm not sure to understand what is going to do.

Good to know. It is true that a request is not only the hit but also the transportation step. Right now the download only happens [at this point](https://github.com/fcsonline/drill/blob/master/src/actions/request.rs#L267) if the...

We need some option to force to read all the response body, but as a workaround assigning the value should read all the content because is used in other use...

The initial goal of drill was to provide a tool to execute test plans with dependencies between them, like `jmeter`. If you are searching a tool to test a single...

I'm not really sure to understand you when you say "periodic requests". About the scenario you said, you can configure the load that `drill` will perform with `iterations` and `concurrency`...

Interesting! It should be relatively easy to implement.

Thank you so much for this detailed report. :100: It is true that this can be a common case during high load. Right now we are throwing a panic because...