The QryRTT histogram in BIND’s per-view resolver statistics is shifting toward higher millisecond buckets. What was once dominated by RTT10 and RTT100 (sub-100ms responses from upstream authoritative servers) is now accumulating in RTT500, RTT800, and RTT1600. In severe cases, most outbound recursive queries land in the overflow RTT1600+ bucket.

This metric is not client-perceived latency. The QryRTT counters measure the round-trip time of BIND’s outbound recursive queries to upstream authoritative nameservers. A rightward shift means the servers BIND depends on for cache misses are taking longer to respond. BIND has no native inbound client latency histogram; if you need end-to-end latency from the client perspective, use dnstap or external measurement.

A sustained RTT shift is a leading indicator. It precedes the more visible symptoms: recursive-clients slots filling, SERVFAIL rates climbing, and end-user timeouts. Catching the shift early gives you time to identify the degraded upstream and mitigate before the resolver cascades into broad failure.

What this means

BIND exposes six RTT histogram buckets per view in the resolver statistics section of the statistics channel:

CounterRTT range (ms)
QryRTT100 to 9
QryRTT10010 to 99
QryRTT500100 to 499
QryRTT800500 to 799
QryRTT1600800 to 1599
QryRTT1600+1600 and above

Each counter accumulates the number of outbound recursive queries whose RTT fell within that range. The final bucket (1600+) is the overflow bucket for queries at or above 1600ms.

A healthy recursive resolver serving typical internet traffic shows the vast majority of outbound queries in RTT10 and RTT100, with a modest tail in RTT500. When RTT500, RTT800, or RTT1600 captures a growing share, the upstream nameservers BIND recurses to are responding more slowly.

Three properties of these counters affect interpretation:

Cumulative, not instantaneous. The counters accumulate since process start or last statistics reset. A resolver running for weeks with mostly fast upstream responses will show enormous RTT10 and RTT100 counters even if the last hour was terrible. You must compute deltas over your monitoring interval to see the current distribution rather than the all-time distribution.

Recursive resolvers only. Authoritative-only servers do not issue recursive queries and will not populate these counters meaningfully. If your BIND instance serves zones but does not have recursion yes, the RTT buckets will be empty or near-zero.

Per-view. In split-horizon setups, each view maintains its own RTT distribution. A shift in one view but not others can isolate which upstream path is degraded. Always check whether the shift is global or view-specific.

An internal BucketSize stat exists in the raw statistics output, but the Netdata BIND collector drops it. Do not rely on it for monitoring.

flowchart TD
    A["QryRTT buckets shifting high"] --> B{"QueryTimeout rising?"}
    B -->|"Yes"| C["Upstream dropping packets"]
    B -->|"No"| D["Upstream slow but alive"]
    C --> E{"RecursClients climbing?"}
    E -->|"Yes"| F["Cascade risk active"]
    E -->|"No"| G["Watch for escalation"]
    F --> H["Identify upstream: rndc recursing"]
    D --> I["Test upstream directly"]

Common causes

CauseWhat it looks likeFirst thing to check
Upstream authoritative degradationRTT shifts across many unrelated domains; QueryTimeout may also riserndc recursing to find which upstreams are slow
Network path issue (routing, packet loss)RTT shifts for specific upstream networks; traceroute shows latency or lossdig @upstream-ip example.com directly and compare timing
Forwarder failure or slownessAll recursive queries shift if using a single forwarder; view-specific if per-view forwardersCheck forwarder configuration and health
EDNS0 or path MTU problemsRTT shifts with elevated Truncated or EDNS0Fail counters; TCP fallback increasesdig @upstream-ip example.com +dnssec +bufsize=512 to test EDNS behavior
DNSSEC validation overheadRTT shifts primarily for signed domains; ValFail may be elevatedCompare dig domain +cd (checking disabled) vs normal query timing
Cold cache after restartRTT shifts briefly as BIND re-probes upstream RTTs; self-corrects in minutesCheck uptime; allow 30-60 minutes for cache warming

Quick checks

These are safe, read-only commands. Adjust the statistics channel port (8653 in these examples) to match your configuration.

# Check per-view RTT bucket distribution
curl -s http://localhost:8653/json/v1/server | \
  python3 -c "import sys,json; d=json.load(sys.stdin); \
  [print(f'{v}: {k}: {s}') for v,vd in d.get('views',{}).items() \
  for k,s in sorted(vd.get('resolver',{}).get('stats',{}).items()) if 'RTT' in k or 'rtt' in k]"
# Check resolver failure counters per view (QueryTimeout, Lame, Retry, etc.)
curl -s http://localhost:8653/json/v1/server | \
  python3 -c "import sys,json; d=json.load(sys.stdin); \
  [print(f'{v}: {k}: {s}') for v,vd in d.get('views',{}).items() \
  for k,s in sorted(vd.get('resolver',{}).get('stats',{}).items()) \
  if k in ('QueryTimeout','Lame','QuerySockFail','QueryAbort','Retry','SERVFAIL','Truncated','EDNS0Fail','OtherError')]"
# Check recursive clients (gauge, not cumulative)
curl -s http://localhost:8653/json/v1/server | \
  python3 -c "import sys,json; d=json.load(sys.stdin); \
  print('RecursClients:', d.get('nsstats',{}).get('RecursClients', 'N/A'))"
# Identify which upstream nameservers are causing pile-up
# Output format varies by BIND version; adjust field extraction as needed
rndc recursing | awk '/#/{print $NF}' | sort | uniq -c | sort -rn | head -10
# Test a specific upstream nameserver directly
dig @<upstream-ip> example.com A +time=2 +tries=1 | grep "Query time"
# Check cache hit ratio per view
curl -s http://localhost:8653/json/v1/server | \
  python3 -c "import sys,json; d=json.load(sys.stdin); \
  [print(f'{v}: Hits={cs.get(\"CacheHits\",0)} Misses={cs.get(\"CacheMisses\",0)} Ratio={cs.get(\"CacheHits\",0)/(cs.get(\"CacheHits\",0)+cs.get(\"CacheMisses\",1))*100:.1f}%') \
  for v,vd in d.get('views',{}).items() if (cs:=vd.get('resolver',{}).get('cachestats',{}))]"
# Check resolver-query-timeout setting
named-checkconf -p /etc/named.conf 2>/dev/null | grep resolver-query-timeout || echo "not set (default: 10000ms)"

How to diagnose it

  1. Confirm the shift is real, not a cold-start artifact. Check uptime. If the resolver restarted recently (under 30-60 minutes), the RTT distribution will be skewed because BIND is re-probing upstream server RTTs from scratch. Wait for cache and RTT estimates to stabilize.

  2. Compute deltas, not raw values. The QryRTT counters are cumulative. Sample the statistics channel twice with a known interval (for example, 60 seconds apart) and compute the delta for each bucket. The delta distribution is what matters. A single snapshot of cumulative counters tells you the all-time average, which may mask a recent degradation.

  3. Check whether the shift is global or per-view. If only one view shows the shift, the problem is likely in the upstream path specific to that view’s configuration (forwarders, network routing, or specific zones). A global shift across all views points to a broader upstream or network issue.

  4. Correlate with QueryTimeout. This is the single most important correlation. If RTT buckets shift high and QueryTimeout is also rising, upstream nameservers are not just slow but are dropping or failing to respond to packets. If QueryTimeout is flat, the upstream is slow but still answering. The distinction determines urgency: a slow-but-alive upstream degrades performance, while a timing-out upstream risks cascade failure.

  5. Check RecursClients and NumFetch. Each slow outbound query holds a recursive-client slot. If RecursClients is climbing toward the configured limit (default 1000, soft quota at 900), the resolver is approaching cascade failure. Per-view NumFetch shows which view is consuming the most slots.

  6. Identify the specific upstream. Run rndc recursing and look at which upstream nameservers appear most frequently in the in-flight query list. The aggregation command in Quick checks gives a top-N of upstreams being waited on.

  7. Test the identified upstream directly. Use dig @<upstream-ip> from the resolver host and from an external host. Compare RTT. If the upstream is slow from both locations, the problem is upstream-side. If it is only slow from the resolver host, suspect a local network path issue.

  8. Check for EDNS0 or fragmentation issues. Elevated Truncated or EDNS0Fail counters suggest the upstream or an intermediate firewall is mishandling EDNS0 or causing fragmentation. This forces TCP fallback, which is inherently slower and consumes more file descriptors.

  9. Consider version-specific bugs. On BIND versions before 9.18.48, a resolver statistics bug could cause timed-out responses to be miscounted. If you are running an older 9.18.x, the RTT distribution may not accurately reflect timeout behavior.

Metrics and signals to monitor

SignalWhy it mattersWarning sign
QryRTT bucket distribution (per view)Primary indicator of upstream latencySustained shift toward RTT500+ buckets over multiple intervals
QueryTimeout (per view)Differentiates slow upstream from unreachable upstreamRising rate above 2% of outbound queries
RecursClients (gauge)Shows whether slow upstream is consuming slotsClimbing past 50% of recursive-clients limit
NumFetch (per view)Per-view pressure on upstream resolutionSustained upward trend in a specific view
CacheHits / CacheMissesFalling hit ratio increases upstream load, compounding RTT issuesDrop below baseline sustained for 15+ minutes
QrySERVFAILEffect signal when cascade beginsRate above 1% of classified responses
Truncated / EDNS0FailEDNS0 negotiation failures force TCP fallbackNon-zero and increasing
Lame (per view)Delegation to non-authoritative servers wastes timeSustained increase

Fixes

Upstream nameserver degradation

If a specific upstream nameserver is consistently slow, BIND’s RTT-based server selection algorithm will automatically deprioritize it. BIND maintains internal RTT estimates per nameserver and preferentially queries faster servers within the same delegation. This is self-healing for partial failures: a single slow authoritative server among several healthy ones may not noticeably impact resolution.

However, if all authoritative servers for a zone or TLD are slow, BIND has no alternative. In this case:

  • Lower resolver-query-timeout temporarily to fail fast rather than holding recursive-client slots for the full timeout duration (default 10 seconds). The option accepts values from 301ms to 30000ms. Lowering it reduces the blast radius of upstream failures but increases the risk of premature SERVFAIL for legitimately complex delegation chains. Use as a temporary mitigation, not a permanent setting.

  • Flush stuck cache entries if negative caching is compounding the problem. rndc flushname <domain> clears entries for a specific name without flushing the entire cache. A full rndc flush is more disruptive and should be reserved for severe cases.

Network path issues

If the upstream is slow only from the resolver host, investigate the local network path:

  • Check for packet loss with mtr or traceroute to the upstream IP.
  • Verify no firewall or NAT is constraining source port entropy, which limits concurrent outbound queries.
  • Confirm net.core.rmem_max and related kernel buffer settings are adequate for the query volume.

Forwarder-specific problems

If the resolver uses forwarders (forwarders statement in named.conf), a single slow forwarder can dominate the RTT distribution because all recursive traffic flows through it. Check each forwarder’s health independently. Consider removing or replacing a chronically slow forwarder. BIND will use forwarders in order of RTT if multiple are configured, but a single forwarder configuration has no failover.

EDNS0 and path MTU

If Truncated or EDNS0Fail counters are elevated, the upstream or an intermediate firewall may be dropping EDNS0-advertised packets. Test with reduced buffer sizes: dig @<upstream-ip> example.com +bufsize=512. If responses improve, the path has an MTU or EDNS0 handling issue. Check firewall rules for UDP fragmentation dropping.

Prevention

  • Track RTT distribution as a baseline trend. Establish the normal distribution for your resolver and alert on sustained shifts before they cascade.
  • Monitor RecursClients as a percentage of the limit. Daily peaks should not exceed 50% of the limit, providing headroom for upstream slowdowns.
  • Alert on QueryTimeout rates above 2%. Timed-out upstream queries are the direct precursor to cascade failure.
  • Keep recursive-clients adequately sized. The default of 1000 is too low for busy resolvers. Scale it with available file descriptors and memory, but do not raise it without ensuring the system can support the concurrent load.
  • Note deprecated and removed options. resolver-nonbackoff-tries and resolver-retry-interval are deprecated in BIND 9.18 and removed in BIND 9.20. Do not rely on them for tuning.

How Netdata helps

Netdata’s BIND collector surfaces the per-view QryRTT histogram buckets as per-second metrics, handling the cumulative-to-delta conversion automatically. This eliminates the manual two-sample subtraction that raw statistics channel polling requires.

  • Per-second RTT bucket distribution per view shows the current distribution shift in real time, not the all-time cumulative average.
  • Correlation with RecursClients (collected as an absolute gauge) shows immediately whether an RTT shift is translating into recursive-client slot pressure.
  • Correlation with per-view resolver failure counters (QueryTimeout, Retry, Lame, EDNS0Fail) distinguishes a slow-but-alive upstream from one that is dropping packets.
  • Correlation with cache hit ratio reveals whether declining cache effectiveness is amplifying upstream load.
  • ML anomaly detection on the RTT distribution can flag a gradual shift before it crosses a fixed threshold.