Re: zone_journal_compact: could not get zone size: not found

2024-07-09 Thread Ondřej Surý
You need to ask your supplier. BIND 9.16 is end-of-life and for all practical purposes, everything that ISC provides doesn't have the problem. Unfortunately, RedHat decided to provide FreeIP dyndb plugin under incompatible license with BIND 9, so we can't really do anything about that. Ondrej -

Re: zone_journal_compact: could not get zone size: not found

2024-07-09 Thread Kees Bakker via bind-users
Indeed the LDAP plugin does not provide the getsize method. Until now it never has. I'll notify the maintainer. I have a question that you may be able to answer. Is the getsize method a required method or an optional one? If the latter then the zone_journal_compact function needs to become a b

Re: zone_journal_compact: could not get zone size: not found

2024-07-08 Thread Ondřej Surý
You need to ask FreeIPA people and your vendor (but my guess is that the dyndb plugin provided by RH doesn’t provide this method).--Ondřej Surý — ISC (He/Him)My working hours and your working hours may be different. Please do not feel obligated to reply outside your normal working hours.On 8. 7. 20

Re: zone_journal_compact: could not get zone size: not found

2024-07-08 Thread Kees Bakker via bind-users
Running gdb showed that the "not found" comes from this piece of code isc_result_t dns_db_getsize(dns_db_t*db, dns_dbversion_t*version, uint64_t*records, uint64_t*bytes) { REQUIRE(DNS_DB_VALID(db)); REQUIRE(dns_db_iszone(db)); if(db->methods->getsize!= NULL) { return((db->methods->getsize)(db, ve

Re: zone_journal_compact: could not get zone size: not found

2024-07-08 Thread Kees Bakker via bind-users
On 08-07-2024 13:42, Greg Choules wrote: Hi Kees. Hi Greg, thanks for the quick reply. A few questions: - What version of BIND are you running? 9.16.23 (in centos that is 32:9.16.23-15.el9) - How large (number of RRs) are your zones? My main zone (renamed to example.com) is about 800 RRs (

Re: zone_journal_compact: could not get zone size: not found

2024-07-08 Thread Greg Choules via bind-users
Hi Kees. A few questions: - What version of BIND are you running? - How large (number of RRs) are your zones? - What is the peak rate of dynamic updates? - Do you have "max-journal-size" configured to anything? - Are you perhaps getting short on disc storage in the place where BIND keeps its files?