summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorChris Akritidis <43294513+cakrit@users.noreply.github.com>2023-02-20 06:18:37 -0800
committerGitHub <noreply@github.com>2023-02-20 06:18:37 -0800
commite0638f5756ce6f0aa601baa562cfc1ec6ed3e6a8 (patch)
tree4585a02f535e5424c113fe1918d6c25bc2f31714 /docs
parent922ebd48beb78beedf0fca771cb38d12879ee5b4 (diff)
Remove obsolete instruction to lower memory usage (#14568)
Diffstat (limited to 'docs')
-rw-r--r--docs/guides/configure/performance.md35
1 files changed, 1 insertions, 34 deletions
diff --git a/docs/guides/configure/performance.md b/docs/guides/configure/performance.md
index 9782f9af68..081e35080f 100644
--- a/docs/guides/configure/performance.md
+++ b/docs/guides/configure/performance.md
@@ -142,40 +142,7 @@ modules:
## Lower memory usage for metrics retention
-Reduce the disk space that the [database engine](https://github.com/netdata/netdata/blob/master/database/engine/README.md) uses to retain metrics by editing
-the `dbengine multihost disk space` option in `netdata.conf`. The default value is `256`, but can be set to a minimum of
-`64`. By reducing the disk space allocation, Netdata also needs to store less metadata in the node's memory.
-
-The `page cache size` option also directly impacts Netdata's memory usage, but has a minimum value of `32`.
-
-Reducing the value of `dbengine multihost disk space` does slim down Netdata's resource usage, but it also reduces how
-long Netdata retains metrics. Find the right balance of performance and metrics retention by using the [dbengine
-calculator](https://github.com/netdata/netdata/blob/master/docs/store/change-metrics-storage.md#calculate-the-system-resources-ram-disk-space-needed-to-store-metrics).
-
-All the settings are found in the `[global]` section of `netdata.conf`:
-
-```conf
-[db]
- memory mode = dbengine
- page cache size = 32
- dbengine multihost disk space = 256
-```
-
-To save even more memory, you can disable the dbengine and reduce retention to just 30 minutes, as shown below:
-
-```conf
-[db]
- storage tiers = 1
- mode = alloc
- retention = 1800
-```
-
-Metric retention is not important in certain use cases, such as:
- - Data collection nodes stream collected metrics collected to a centralization point.
- - Data collection nodes export their metrics to another time series DB, or are scraped by Prometheus
- - Netdata installed only during incidents, to get richer information.
-In such cases, you may not want to use the dbengine at all and instead opt for memory mode
-`memory mode = alloc` or `memory mode = none`.
+See how to [change how long Netdata stores metrics](https://github.com/netdata/netdata/blob/master/docs/store/change-metrics-storage.md).
## Disable machine learning