mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 11:52:12 -04:00
Describe the polynomial backoff curve used in the quota adjustment
This commit is contained in:
parent
5fc8130822
commit
56ef09c3a1
1 changed files with 3 additions and 1 deletions
|
|
@ -4171,7 +4171,9 @@ dns_adb_changeflags(dns_adb_t *adb, dns_adbaddrinfo_t *addr,
|
|||
}
|
||||
|
||||
/*
|
||||
* (10000 / ((10 + n) / 10)^(3/2)) for n in 0..99.
|
||||
* The polynomial backoff curve (10000 / ((10 + n) / 10)^(3/2)) <0..99> drops
|
||||
* fairly aggressively at first, then slows down and tails off at around 2-3%.
|
||||
*
|
||||
* These will be used to make quota adjustments.
|
||||
*/
|
||||
static int quota_adj[] = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue