mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
send bursts of queries in parallel to reduce test runtime
sending each group of queries simultaneously, and then checking the output after the last one finishes, reduces the runtime of the serve-stale test by about six minutes.
This commit is contained in:
parent
027601cd3e
commit
195d25b222
3 changed files with 314 additions and 253 deletions
|
|
@ -30,6 +30,7 @@ options {
|
|||
max-stale-ttl 3600;
|
||||
stale-answer-ttl 2;
|
||||
stale-answer-enable yes;
|
||||
servfail-ttl 0;
|
||||
};
|
||||
|
||||
zone "." {
|
||||
|
|
|
|||
|
|
@ -27,9 +27,10 @@ options {
|
|||
listen-on { 10.53.0.1; };
|
||||
listen-on-v6 { none; };
|
||||
recursion yes;
|
||||
max-stale-ttl 45;
|
||||
max-stale-ttl 20;
|
||||
stale-answer-ttl 3;
|
||||
stale-answer-enable yes;
|
||||
servfail-ttl 0;
|
||||
};
|
||||
|
||||
zone "." {
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue