]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Fix typo in tuning documentation 9904/head
authorJan Hilberath <jan@hilberath.de>
Mon, 4 Jan 2021 10:40:37 +0000 (19:40 +0900)
committerJan Hilberath <jan@hilberath.de>
Mon, 4 Jan 2021 10:40:37 +0000 (19:40 +0900)
pdns/dnsdistdist/docs/advanced/tuning.rst

index d50becb7f7320649906489248b47050040fd5023..1dd23e5063ebf2111cc3e93757fd3583cf6d1b40 100644 (file)
@@ -48,7 +48,7 @@ To be able to use more CPU cores for UDP queries processing, it is possible to u
 :program:`dnsdist` will then add four identical local binds as if they were different IPs or ports, start four threads to handle incoming queries and let the kernel load balance those randomly to the threads, thus using four CPU cores for rules processing.
 Note that this require ``SO_REUSEPORT`` support in the underlying operating system (added for example in Linux 3.9).
 Please also be aware that doing so will increase lock contention and might not therefore scale linearly.
-This is especially true for Lua-intensive setups, because Lua processing in dnsdist is serialized by an unique lock for all threads.
+This is especially true for Lua-intensive setups, because Lua processing in dnsdist is serialized by a unique lock for all threads.
 
 Another possibility is to use the reuseport option to run several dnsdist processes in parallel on the same host, thus avoiding the lock contention issue at the cost of having to deal with the fact that the different processes will not share informations, like statistics or DDoS offenders.