coredns/plugin
Miek Gieben e47d881461
pkg/replace: make it more efficient. (#2544)
* pkg/replace: make it more efficient.

Remove the map that is allocated on every write and make it more static,
but just defining a function that gets called for a label and returns
its value.

Remove the interface definition and just implement what is needed in our
case. Add benchmark test for replace as well.

Extend metadata test to test multiple values (pretty sure this didn't
work, but there wasn't a test for it, so can't be sure).

Update all callers to use it - concurrent use should be fine as we pass
everything by value.

Benchmarks in replacer:

new: BenchmarkReplacer-4   300000      4717 ns/op     240 B/op       8 allocs/op
old: BenchmarkReplacer-4   300000      4368 ns/op     384 B/op      11 allocs/op

Added benchmark function to the old code to test it.

~~~
func BenchmarkReplacer(b *testing.B) {
	w := dnstest.NewRecorder(&test.ResponseWriter{})
	r := new(dns.Msg)
	r.SetQuestion("example.org.", dns.TypeHINFO)
	r.MsgHdr.AuthenticatedData = true
	b.ResetTimer()
	b.ReportAllocs()
	repl := New(context.TODO(), r, w, "")
	for i := 0; i < b.N; i++ {
		repl.Replace("{type} {name} {size}")
	}
}
~~~

New code contains (of course a different one). The amount of ops is
more, which might be good to look at some more. For all the allocations
is seems it was quite performant.

This looks to be 50% faster, and there is less allocations in log
plugin:

old: BenchmarkLogged-4   	   20000	     70526 ns/op
new: BenchmarkLogged-4   	   30000	     57558 ns/op

Signed-off-by: Miek Gieben <miek@miek.nl>

* Stickler bot

Signed-off-by: Miek Gieben <miek@miek.nl>

* Improve test coverage

Signed-off-by: Miek Gieben <miek@miek.nl>

* typo

Signed-off-by: Miek Gieben <miek@miek.nl>

* Add test for malformed log lines

Signed-off-by: Miek Gieben <miek@miek.nl>
2019-02-12 07:38:49 +00:00
..
auto Default to upstream to self (#2436) 2019-01-13 16:54:49 +00:00
autopath Fix some typos in comment (#2520) 2019-02-01 19:22:43 +08:00
bind Clean up tests logging (#1979) 2018-07-19 16:23:06 +01:00
cache Fix some spelling errors in comment (#2533) 2019-02-07 11:27:27 -05:00
chaos Fuzzing: add more fuzzing targets (#2402) 2018-12-17 07:49:15 +00:00
debug Clean up tests logging (#1979) 2018-07-19 16:23:06 +01:00
deprecated Implement deprecation notice for 1.1.4 (#1833) 2018-05-24 14:30:01 +01:00
dnssec Stop importing testing in the main binary (#2479) 2019-01-19 11:23:13 +00:00
dnstap Stop importing testing in the main binary (#2479) 2019-01-19 11:23:13 +00:00
erratic Fix EDNS0 compliance (#2357) 2018-12-06 21:18:11 +00:00
errors some typo fix (#2512) 2019-01-29 10:21:19 -05:00
etcd Fix t.Error error message (#2551) 2019-02-11 07:23:05 +00:00
federation Remove grpc watch functionality (#2549) 2019-02-11 14:46:53 +00:00
file Stop importing testing in the main binary (#2479) 2019-01-19 11:23:13 +00:00
forward fix tls_servername in cloudflare example (#2466) 2019-01-15 09:18:20 -08:00
health Fix a typo in health plugin readme (#2274) 2018-11-06 08:54:53 -08:00
hosts plugin/hosts: fix for ipv4-in-ipv6 (#2506) 2019-01-28 16:36:34 +00:00
import Generate man-pages (#2439) 2019-01-06 09:15:34 +00:00
k8s_external Remove grpc watch functionality (#2549) 2019-02-11 14:46:53 +00:00
kubernetes Remove grpc watch functionality (#2549) 2019-02-11 14:46:53 +00:00
loadbalance Do not muck with ordering of XFRs (#2329) 2018-11-21 08:38:19 +01:00
log pkg/replace: make it more efficient. (#2544) 2019-02-12 07:38:49 +00:00
loop plugin/loop: show from -> to (#2400) 2018-12-16 13:48:09 -08:00
metadata Typo fixes (#2031) 2018-08-14 08:55:55 -07:00
metrics Stop importing testing in the main binary (#2479) 2019-01-19 11:23:13 +00:00
nsid Clean up tests logging (#1979) 2018-07-19 16:23:06 +01:00
pkg pkg/replace: make it more efficient. (#2544) 2019-02-12 07:38:49 +00:00
pprof Clean up tests logging (#1979) 2018-07-19 16:23:06 +01:00
proxy Correct formatting of policies list (#2509) 2019-01-28 10:07:13 -05:00
reload Stop importing testing in the main binary (#2479) 2019-01-19 11:23:13 +00:00
rewrite pkg/replace: make it more efficient. (#2544) 2019-02-12 07:38:49 +00:00
root Typo fixes (#2031) 2018-08-14 08:55:55 -07:00
route53 Default to upstream to self (#2436) 2019-01-13 16:54:49 +00:00
secondary Default to upstream to self (#2436) 2019-01-13 16:54:49 +00:00
template Default to upstream to self (#2436) 2019-01-13 16:54:49 +00:00
test golint fix (#2504) 2019-01-27 17:55:07 +00:00
tls Clean up tests logging (#1979) 2018-07-19 16:23:06 +01:00
trace Add request and response context to traces (#2162) 2018-10-05 20:13:16 +00:00
whoami Fuzzing: add more fuzzing targets (#2402) 2018-12-17 07:49:15 +00:00
backend.go all: fix plugin import ordering (#1717) 2018-04-22 08:34:35 +01:00
backend_lookup.go plugin/etcd: Filter empty host field by qtype (#2499) 2019-01-28 16:38:27 +00:00
log_test.go Clean up tests logging (#1979) 2018-07-19 16:23:06 +01:00
normalize.go plugin/kubernetes: fix case preservation and add test (#2430) 2019-01-08 08:30:03 -05:00
normalize_test.go Stop importing testing in the main binary (#2479) 2019-01-19 11:23:13 +00:00
plugin.go fix typo (#2272) 2018-11-05 05:59:24 -08:00