Skip to content

Commit

Permalink
raise sender limit from 2x to 10x
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 committed Dec 4, 2018
1 parent 705efa9 commit 103f835
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Expand Up @@ -201,8 +201,8 @@ func run(nodes []*Node) error {
}()
}

// Individual sender tps limit is 2x ideal.
tpsLimit := 2 * config.tps / config.senders
// Individual sender tps limit is 10x ideal.
tpsLimit := 10 * config.tps / config.senders
if tpsLimit == 0 {
tpsLimit = 1
}
Expand Down

0 comments on commit 103f835

Please sign in to comment.