ICANN/GNSO GNSO Email List Archives

[ga]


<<< Chronological Index >>>    <<< Thread Index >>>

[ga] Re: No more FUD -- what is the current size of the .com database?


On Wed, Sep 27, 2006 at 02:07:40AM -0400,
 Martin Hannigan <hannigan@xxxxxxxxxxx> wrote 
 a message of 40 lines which said:

> Then why is there not consistency across the globe on root server
> query performance?

1) Geographical/provider closeness (there is a root name server at an
exchange point connected to the network of my Internet access provider
so, obviously, this root name server replies faster).

2) Speed of the software (nsd, used by K-root, is much, much faster
than BIND)

% qtest 'SOA .' `dig +short NS .`
3 202.12.27.33#53(202.12.27.33)

(202.12.27.33 is M-root, qtest is attached.)

#!/bin/sh
#
# From: Joe Abley <jabley@xxxxxxx>

query=$1; shift
#
[ -z "$*" ] && echo "Syntax: $0 query server..." && exit 1
#
for i in 0 1 2; do
   for server in $*; do
     dig @${server} ${query};
   done
done | \
   awk '/^;; Query time:/ { query_time = $4; } \
     /^;; SERVER: / { sum[$3] += query_time; num[$3]++; } \
     END { for (server in sum) { print int(sum[server]/num[server]), server; } }' | \
   sort -n | head -1



<<< Chronological Index >>>    <<< Thread Index >>>