]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: greater
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Mon, 21 Oct 2024 18:47:17 +0000 (14:47 -0400)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Mon, 21 Oct 2024 19:21:46 +0000 (15:21 -0400)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
docs/appendices/backend-writers-guide.rst
docs/changelog/pre-4.0.rst
docs/common/secpoll.rst
pdns/dnsdistdist/docs/advanced/tuning.rst
pdns/dnsdistdist/docs/reference/config.rst

index 5b535071f26a1018b8d29c6bff045f28326307bd..f668bb7c0ec0fda719f0e52331227f1495f49391 100644 (file)
@@ -531,7 +531,7 @@ A secondary zone is pulled from a primary, after which it is 'fresh', but
 this is only temporary. In the SOA record of a zone there is a field
 which specifies the 'refresh' interval. After that interval has elapsed,
 the secondary nameserver needs to check at the primary if the serial number
-there is higher than what is stored in the backend locally.
+there is greater than what is stored in the backend locally.
 
 If this is the case, PowerDNS dubs the domain 'stale', and schedules a
 transfer of data from the remote. This transfer remains scheduled until
index e14a3f5f7ec3c77a13a66a29cd36baf3634383ef..7535ff951029f94e1f4978f7cebfb1d40a9bc4dd 100644 (file)
@@ -1561,7 +1561,7 @@ Changes between 3.2-RC2 and 3.2-RC3
    3003 <http://wiki.powerdns.com/projects/trac/changeset/3003>`__.
 -  Mark Zealey found that an earlier performance improvement could cause
    crashes under high load, with lots of IPs configured in local-address
-   and receiver-threads higher than 1. Fixed in `commit
+   and receiver-threads greater than 1. Fixed in `commit
    3005 <http://wiki.powerdns.com/projects/trac/changeset/3005>`__.
 
 Changes between 3.2-RC1 and 3.2-RC2
index d181f1ffaf09a48b641e7810b7a5866032a56190..a9eee744afd987d1bfc6abfe7e84f2303414b9c3 100644 (file)
@@ -44,7 +44,7 @@ If at a later date, resolution fails, the security-status is not reset to 1.
 It could be lowered however if we discover the security status is less urgent than we thought.
 
 If resolution fails, and the previous security-status was 1, the new security-status becomes 0 ('no data').
-If the security-status was higher than 1, it will remain that way, and not get set to 0.
+If the security-status was greater than 1, it will remain that way, and not get set to 0.
 
 In this way, security-status of 0 really means 'no data', and cannot mask a known problem.
 
index 85a5692e5efb957d141f7fbeb912b8c1c4407a77..96a38294672bee1c1ab2c36eaa4088afbbd598f4 100644 (file)
@@ -54,7 +54,7 @@ Large installations running dnsdist before 1.4.0 are advised to increase the def
 Looking at ``udp-in-errors`` in :func:`dumpStats` will reveal whether the system is dropping UDP datagrams because dnsdist does not pick them up fast enough. In that case it might be good to add more :func:`addLocal` directives.
 In the same way, if the number of ``Drops`` in :func:`showServers` increase fast enough, it might mean that the backend is overloaded but also that the UDP received thread is. In that case adding more :func:`newServer`
 
-Using a single connected UDP socket to contact a backend, and thus a single (source address, source port, destination address, destination port) tuple, might not play well with some load-balancing mechanisms present in front of the backend. Linux's ``reuseport``, for example, does not balance the incoming datagrams to several threads in that case. That can be worked around by using the ``sockets`` option of the :func:`newServer` directive to open several sockets instead of one. You may want to set that number to a value somewhat higher than the number of worker threads configured in the backend. dnsdist will then select a socket using round-robin to forward a query to the backend, and use event multiplexing on the receiving side.
+Using a single connected UDP socket to contact a backend, and thus a single (source address, source port, destination address, destination port) tuple, might not play well with some load-balancing mechanisms present in front of the backend. Linux's ``reuseport``, for example, does not balance the incoming datagrams to several threads in that case. That can be worked around by using the ``sockets`` option of the :func:`newServer` directive to open several sockets instead of one. You may want to set that number to a value somewhat greater than the number of worker threads configured in the backend. dnsdist will then select a socket using round-robin to forward a query to the backend, and use event multiplexing on the receiving side.
 
 Note that, since 1.7, dnsdist supports marking a backend as "TCP only", as well as enabling DNS over TLS communication between dnsdist and that backend. That leads to a different model where UDP queries are instead passed to a TCP worker:
 
index 09eca5b66c700918489d140236dd6955fdf28656..cd2b4d3fc4d7b0916e2b09026f330f9baa9aa5be 100644 (file)
@@ -711,7 +711,7 @@ Servers
                                                              - address, e.g. ``""192.0.2.2""``
                                                              - interface name, e.g. ``""eth0""``
                                                              - address@interface, e.g. ``""192.0.2.2@eth0""`` "
-    ``sockets``                              ``number``            "Number of UDP sockets (and thus source ports) used toward the backend server, defaults to a single one. Note that for backends which are multithreaded, this setting will have an effect on the number of cores that will be used to process traffic from dnsdist. For example you may want to set 'sockets' to a number somewhat higher than the number of worker threads configured in the backend, particularly if the Linux kernel is being used to distribute traffic to multiple threads listening on the same socket (via `reuseport`). See also :func:`setRandomizedOutgoingSockets`."
+    ``sockets``                              ``number``            "Number of UDP sockets (and thus source ports) used toward the backend server, defaults to a single one. Note that for backends which are multithreaded, this setting will have an effect on the number of cores that will be used to process traffic from dnsdist. For example you may want to set 'sockets' to a number somewhat greater than the number of worker threads configured in the backend, particularly if the Linux kernel is being used to distribute traffic to multiple threads listening on the same socket (via `reuseport`). See also :func:`setRandomizedOutgoingSockets`."
     ``disableZeroScope``                     ``bool``              "Disable the EDNS Client Subnet :doc:`../advanced/zero-scope` feature, which does a cache lookup for an answer valid for all subnets (ECS scope of 0) before adding ECS information to the query and doing the regular lookup. Default is false. This requires the ``parseECS`` option of the corresponding cache to be set to true"
     ``rise``                                 ``number``               "Require ``number`` consecutive successful checks before declaring the backend up, default: 1"
     ``useProxyProtocol``                     ``bool``              "Add a proxy protocol header to the query, passing along the client's IP address and port along with the original destination address and port. Default is disabled."