adjust burstSize in FanOutThrougputSpec, #23198

This commit is contained in:
Patrik Nordwall 2017-11-14 12:28:27 +01:00
parent 64669bc55f
commit eefd6869a5

View file

@ -95,7 +95,8 @@ abstract class FanOutThroughputSpec extends RemotingMultiNodeSpec(FanOutThroughp
else ActorRefTarget(ref)
}
val burstSize = 2000 / senderReceiverPairs
// each sender may have 3 bursts in flight
val burstSize = 3000 / senderReceiverPairs / 3
val scenarios = List(
TestSettings(
testName = "warmup",
@ -175,7 +176,6 @@ abstract class FanOutThroughputSpec extends RemotingMultiNodeSpec(FanOutThroughp
}
"Max throughput of fan-out" must {
pending // FIXME until issue #23198 has been solved
val reporter = BenchmarkFileReporter("FanOutThroughputSpec", system)
for (s scenarios) {
s"be great for ${s.testName}, burstSize = ${s.burstSize}, payloadSize = ${s.payloadSize}" in test(s, reporter)