Replies: 3 comments 3 replies
-
The only real reason why we kept both With migration to We can explain |
Beta Was this translation helpful? Give feedback.
-
If we are going to drop one of the notions of iteration and loop; which term makes more sense to keep? I am more in favor of keeping iteartion (and iteration handlers) but not sure. Maybe |
Beta Was this translation helpful? Give feedback.
-
created issue #968 |
Beta Was this translation helpful? Give feedback.
-
An experiment expresses duration as:
A lower bound for execution time is then
itervalSeconds * iterationsPerLoop * maxLoops
. However, actual running time is also related to task execution. Of these,metrics/collect
has a big influence. Our first experiment has the duration values all set to 1 but still takes some time to complete because of the task.Using builtin metrics, it is easy to specify duration poorly.
iterationsPerLoop
should probably always be1
. If the task is astart
task,maxLoops
should also be 1. If aloop
task, should be something else.Is there anything we can do to make this easier and clearer?
Beta Was this translation helpful? Give feedback.
All reactions