diff --git a/CHANGES b/CHANGES index 1666253015..cb23dc4a12 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,10 @@ +4611. [bug] The default LMDB mapsize was too low and caused + errors after few thousand zones were added using + rndc addzone. A new config option "lmdb-mapsize" + has been introduced to configure the LMDB + mapsize depending on operational needs. + [RT #44954] + 4609. [cleanup] Rearrange makefiles to enable parallel execution (i.e. "make -j"). [RT #45078] diff --git a/bin/named/config.c b/bin/named/config.c index 7eacf7ecd7..c70ebd934f 100644 --- a/bin/named/config.c +++ b/bin/named/config.c @@ -178,6 +178,7 @@ options {\n\ zero-no-soa-ttl-cache no;\n\ nsec3-test-zone no;\n\ allow-new-zones no;\n\ + lmdb-mapsize 32M;\n\ fetches-per-server 0;\n\ require-server-cookie no;\n\ v6-bias 50;\n\ diff --git a/bin/named/named.conf.docbook b/bin/named/named.conf.docbook index 03f592dc88..234bc8d20a 100644 --- a/bin/named/named.conf.docbook +++ b/bin/named/named.conf.docbook @@ -1,5 +1,5 @@