File tree Expand file tree Collapse file tree 4 files changed +22
-3
lines changed
docs/content/3-configuration
src/main/resources/META-INF/native-image/dps Expand file tree Collapse file tree 4 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 1- ## 5.8.0
1+ ## 5.8.1
22* DNS over HTTPS, see #138
33* Option to disable a specific container to be resolved from DPS, see #596 .
4+ * Increasing default memory limits up to 60mb, see #511 .
45
56## 5.6.2
67* Fixing Getting Non-authoritative answer when unexpected, see #608 .
Original file line number Diff line number Diff line change @@ -136,6 +136,24 @@ See more on [specify from which network solve container][6].
136136| `log.level` | Logging level used by DPS. | `INFO` |
137137| `log.file` | Output target for logs (file path or console). | `console` |
138138
139+ # ## Memory Limits
140+
141+ When on binary mode DPS has a default limit of `MaxHeapSize=50m` + `MaxNewSize=10m`, you can change that by :
142+
143+ **Command Line**
144+ ` ` ` bash
145+ ./dns-proxy-server -XX:MaxHeapSize=50m -XX:MaxNewSize=10m
146+ ` ` `
147+
148+ **Docker Compose**
149+ ` ` ` yaml
150+ services:
151+ dps:
152+ image: defreitas/dns-proxy-server
153+ command: -XX:MaxHeapSize=50m -XX:MaxNewSize=10m
154+ ` ` `
155+
156+
139157# ## File Configuration Example
140158
141159* [Solver remote circuit breaker configuration][3]
Original file line number Diff line number Diff line change 1- version =5.8.0 -snapshot
1+ version =5.8.1 -snapshot
Original file line number Diff line number Diff line change @@ -20,4 +20,4 @@ Args=-H:ReflectionConfigurationResources=${.}/reflect-config.json \
2020 -H:+ReportExceptionStackTraces --enable-url-protocols =http -H:+StackTrace \
2121 --no-fallback --install-exit-handlers \
2222 -march =compatibility \
23- -R:MaxHeapSize =10m -R:MaxNewSize =1m
23+ -R:MaxHeapSize =50m -R:MaxNewSize =10m
You can’t perform that action at this time.
0 commit comments