Re: [Pdns-users] Recursor address in Dnstap messages

2021-03-22 Thread Hans Seidel via Pdns-users
unfortunately, the identify field does not work since it just contains the string "DNS". I will probably file a feature request via github as next step. Thanks, Hans On 22.03.21 08:44, Hans Seidel wrote: Hello Peter, thanks for the tip with the identity field. I will look into it. I need to

Re: [Pdns-users] [E] Re: How to update IP address of records

2021-03-22 Thread Thomas Mieslinger via Pdns-users
The content column is not indexed, so it might take a long time for the database to figure out which records need to be changed. At mysql/mariadb is mvcc (multi version concurrency control) so your table stays readable (powerdns can create answers) during updates. On 3/23/21 1:22 AM, Kevin P. Fl

Re: [Pdns-users] [E] Re: How to update IP address of records

2021-03-22 Thread Kevin P. Fleming via Pdns-users
If it's 10K records all pointing to the same host, then yes... making those CNAMEs to a single name (with an A record) will be much quicker to update than if they were all A records. There are many reasons why that might be a bad idea though, so be careful :-) On Mon, Mar 22, 2021 at 6:36 PM Chhav

Re: [Pdns-users] [E] Re: How to update IP address of records

2021-03-22 Thread Chhavi Mittal via Pdns-users
Yes I am using mysql backend to store the records. But if I have 10K records and I am updating frequently then every time I do a sql update query my table will be locked and it takes some time to update that many records. So that's why I'm looking for a better solution. On Mon, Mar 22, 2021 at 3:2

Re: [Pdns-users] How to update IP address of records

2021-03-22 Thread Larry Wapnitsky via Pdns-users
Are you storing the records in a database? If so, a select and replace would work On Mon, Mar 22, 2021, 17:43 Chhavi Mittal via Pdns-users < pdns-users@mailman.powerdns.com> wrote: > Hello, > > I am new to powerdns and trying to set it up based on my requirements. One > issue that I am facing is

[Pdns-users] How to update IP address of records

2021-03-22 Thread Chhavi Mittal via Pdns-users
Hello, I am new to powerdns and trying to set it up based on my requirements. One issue that I am facing is how to update an IP address for all my records? For example, if I have 10K records that are pointing to one host/IP address but that host goes down and I want to update to a new host ip addr

[Pdns-users] Recursor 4.3.7 released

2021-03-22 Thread Peter van Dijk via Pdns-users
Hello! Today we are releasing PowerDNS Recursor 4.3.7. This release fixes a bug where the wrong TTL could be used when inserting records into the packet cache. Additionally, the recursor no longer resolves unneeded names when chasing CNAME records if QName Minimization is enabled. Please refer t

Re: [Pdns-users] Recursor address in Dnstap messages

2021-03-22 Thread Hans Seidel via Pdns-users
Hello Peter, thanks for the tip with the identity field. I will look into it. I need to make a few changes in our log receiver, since we do not evaluate this field yet. Best, Hans On 19.03.21 11:12, Peter van Dijk via Pdns-users wrote: Hello Hans, On Fri, 2021-03-19 at 10:08 +0100, Hans Se