Skip to content

Commit

Permalink
Merge pull request akka#23988 from akka/wip-23198-FanOutThrougputSpec…
Browse files Browse the repository at this point in the history
…-patriknw

adjust burstSize in FanOutThrougputSpec, akka#23198
  • Loading branch information
patriknw authored Nov 14, 2017
2 parents 5bf2bfe + eefd686 commit 983e9c1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 983e9c1

Please sign in to comment.