Commit a1ff8d23 authored by Dominik Charousset's avatar Dominik Charousset

Update example INI file

parent ad53b9f9
...@@ -12,7 +12,7 @@ max-threads=<number of cores> ...@@ -12,7 +12,7 @@ max-threads=<number of cores>
; maximum number of messages actors can consume in one run ; maximum number of messages actors can consume in one run
max-throughput=<infinite> max-throughput=<infinite>
; measurement resolution in milliseconds (only if profiling is enabled) ; measurement resolution in milliseconds (only if profiling is enabled)
profiling-ms-resolution=100 profiling-resolution=100ms
; output file for profiler data (only if profiling is enabled) ; output file for profiler data (only if profiling is enabled)
profiling-output-file="/dev/null" profiling-output-file="/dev/null"
...@@ -26,12 +26,12 @@ aggressive-steal-interval=10 ...@@ -26,12 +26,12 @@ aggressive-steal-interval=10
moderate-poll-attempts=500 moderate-poll-attempts=500
; frequency of steal attempts during moderate polling ; frequency of steal attempts during moderate polling
moderate-steal-interval=5 moderate-steal-interval=5
; sleep interval in microseconds between poll attempts ; sleep interval between poll attempts
moderate-sleep-duration=50 moderate-sleep-duration=50us
; frequency of steal attempts during relaxed polling ; frequency of steal attempts during relaxed polling
relaxed-steal-interval=1 relaxed-steal-interval=1
; sleep interval in microseconds between poll attempts ; sleep interval between poll attempts
relaxed-sleep-duration=10000 relaxed-sleep-duration=10ms
; when loading io::middleman ; when loading io::middleman
[middleman] [middleman]
...@@ -45,17 +45,18 @@ app-identifier="" ...@@ -45,17 +45,18 @@ app-identifier=""
; maximum number of consecutive I/O reads per broker ; maximum number of consecutive I/O reads per broker
max-consecutive-reads=50 max-consecutive-reads=50
; heartbeat message interval in ms (0 disables heartbeating) ; heartbeat message interval in ms (0 disables heartbeating)
heartbeat-interval=0 heartbeat-interval=0ms
; configures whether the MM detaches its internal utility actors, setting ; configures whether the MM attaches its internal utility actors to the
; this to false allows fully deterministic execution in unit tests ; scheduler instead of dedicating individual threads (needed only for
detach-utility-actors=true ; deterministic testing)
attach-utility-actors=false
; configures whether the MM starts a background thread for I/O activity, ; configures whether the MM starts a background thread for I/O activity,
; setting this to false allows fully deterministic execution in unit test and ; setting this to true allows fully deterministic execution in unit test and
; requires the user to trigger I/O manually ; requires the user to trigger I/O manually
detach-multiplexer=true manual-multiplexing=false
; enable or disable communication via the TCP transport protocol ; disables communication via TCP
enable-tcp=true disable-tcp=false
; enable or disable communication via the UDP transport protocol ; enable communication via UDP
enable-udp=false enable-udp=false
; when compiling with logging enabled ; when compiling with logging enabled
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment