Commit 3e79f084 authored by Karsten Loesing's avatar Karsten Loesing
Browse files

Reduce timeout and stallout values.

The idea is to avoid overlapping measurements. With a new measurement
starting every 5:00 minutes, we time out after 4:30 minutes to make
"room" for the next measurement to start.

We also don't use the stallout feature anymore by setting the value to
0 seconds. The stallout would have failed a measurement after not
receiving new bytes for the given number of seconds. But that's also
not what we want to measure.

Implements #34024.
parent e515e647
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -73,9 +73,9 @@ class TorperfModel(GeneratableTGenModel):
        if self.socksproxy is not None:
            g.node["start"]["socksproxy"] = self.socksproxy
        g.add_node("pause", time="5 minutes")
        g.add_node("transfer50k", type="get", protocol="tcp", size="50 KiB", timeout="295 seconds", stallout="300 seconds")
        g.add_node("transfer1m", type="get", protocol="tcp", size="1 MiB", timeout="1795 seconds", stallout="1800 seconds")
        g.add_node("transfer5m", type="get", protocol="tcp", size="5 MiB", timeout="3595 seconds", stallout="3600 seconds")
        g.add_node("transfer50k", type="get", protocol="tcp", size="50 KiB", timeout="270 seconds", stallout="0 seconds")
        g.add_node("transfer1m", type="get", protocol="tcp", size="1 MiB", timeout="270 seconds", stallout="0 seconds")
        g.add_node("transfer5m", type="get", protocol="tcp", size="5 MiB", timeout="270 seconds", stallout="0 seconds")

        g.add_edge("start", "pause")