Skip to content

Commit

Permalink
Disable BackOff by default (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
mratsim committed Dec 15, 2019
1 parent 19eae44 commit d212380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weave/config.nim
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const WV_StealEarly* {.intdefine.} = 0
## steal requests in advance. This might help hide stealing latencies
## or worsen message overhead.

const WV_EnableBackoff* {.booldefine.} = true
const WV_EnableBackoff* {.booldefine.} = false
## Workers that fail to find work will sleep. This saves CPU at the price
## of slight latency as the workers' parent nodes need to manage their
## steal requests queues when they sleep and there is latency to wake up.
Expand Down

0 comments on commit d212380

Please sign in to comment.