]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Bump max-qperq default to 100; this is enough for rev v6 queries with cold
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Fri, 20 Dec 2019 08:02:21 +0000 (09:02 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 7 Jan 2020 13:35:34 +0000 (14:35 +0100)
cache with validations and qname minimization enabled.  Fixes #8646.

(cherry picked from commit 15d63d5a4a17aece479be953651643736a26d3d0)

pdns/pdns_recursor.cc
pdns/recursordist/docs/settings.rst

index 987682b2bdb2121247e4b6003152de19c66538d1..b92ba90e63e3c1dc61360493300bb4c029293332 100644 (file)
@@ -4695,7 +4695,7 @@ int main(int argc, char **argv)
     ::arg().set("udp-truncation-threshold", "Maximum UDP response size before we truncate")="1232";
     ::arg().set("edns-outgoing-bufsize", "Outgoing EDNS buffer size")="1232";
     ::arg().set("minimum-ttl-override", "Set under adverse conditions, a minimum TTL")="0";
-    ::arg().set("max-qperq", "Maximum outgoing queries per query")="50";
+    ::arg().set("max-qperq", "Maximum outgoing queries per query")="100";
     ::arg().set("max-total-msec", "Maximum total wall-clock time per query in milliseconds, 0 for unlimited")="7000";
     ::arg().set("max-recursion-depth", "Maximum number of internal recursion calls per query, 0 for unlimited")="40";
     ::arg().set("max-udp-queries-per-round", "Maximum number of UDP queries processed per recvmsg() round, before returning back to normal processing")="10000";
index bfd5fb5c688563347b65c7821a8a02056b6381a1..e975c50863b8fdf44ebfdf21ddc7b1ac870991ef 100644 (file)
@@ -911,7 +911,7 @@ Maximum number of Packet Cache entries.
 ``max-qperq``
 -------------
 -  Integer
--  Default: 50
+-  Default: 100
 
 The maximum number of outgoing queries that will be sent out during the resolution of a single client query.
 This is used to limit endlessly chasing CNAME redirections.