Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
helios-solo: skydns workaround to allow DNS responses up to 32768 bytes
Browse files Browse the repository at this point in the history
TL;DR; skydns does not handle TCP well. We already worked around this
in #900. See thar PR for more context.
However, that change only fixed the problem to an extent as we still have
the same issue once the responses are >4096 bytes.

This change extends that workaround to allow us to survive responses up to
32768 bytes in size. This change does not fix the issue, but should make it
more rare.
  • Loading branch information
Staffan Gimåker committed Jan 24, 2017
1 parent b74b938 commit 5573fd2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions solo/base/unbound-skydns.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ server:
outgoing-num-tcp: 256
access-control: 0.0.0.0/0 allow
do-not-query-localhost: no
max-udp-size: 32768
edns-buffer-size: 32768

forward-zone:
name: "."
Expand Down
2 changes: 1 addition & 1 deletion solo/base/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6
0.7
2 changes: 1 addition & 1 deletion solo/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM spotify/helios-solo-base:0.6
FROM spotify/helios-solo-base:0.7

EXPOSE 5801

Expand Down

0 comments on commit 5573fd2

Please sign in to comment.