@cryptotaxi247 / netdata-1 / commits / 44925ffbe

Update README.md

Costa Tsaousis committed Jul 25, 2023 at 14:42 UTC 44925ffbe756d6d906a80d7bdfdff1573b82b6ed
1 file changed +8 -2
README.md
+8 -2
@@ -386,14 +386,20 @@ Yes, you can!
386 <details><summary>Click to see detailed answer ...</summary>
387 &nbsp;<br/>&nbsp;<br/>
388
389 -We suggest the following:
389 +Netdata has been designed to spread disk writes across time. Each metric is flushed to disk every 17 minutes, but metrics are flushed evenly across time, at an almost constant rate. Also, metrics are packed into bigger blocks we call `extents` and are compressed with LZ4 before saving them, to minimize the number of I/O operations made.
390 +
391 +Single nodes Agents (not Parents), you should have a constant rate of about 50 KiB/s or less, with some spikes above that every minute (flushing of tier 1) and higher spikes every hour (flushing of tier 2).
392 +
393 +Health Alerts and Machine-Learning run queries to evaluate their expressions and learn from the metric patterns. These are also spread over time, so there should be an almost constant read rate too.
394 +
395 +To make Netdata not use the disks at all, we suggest the following:
396
397 1. Use database mode `alloc` or `ram` to disable writing metric data to disk.
398 2. Configure streaming to push in real-time all metrics to a Netdata Parent. The Netdata Parent will maintain metrics on disk for this node.
399 3. Disable ML and health on this node. The Netdata Parent will do them for this node.
400 4. Use the Netdata Parent to access the dashboard.
401
396 -Using the above, the Netdata Agent on your production system will not need a disk.
402 +Using the above, the Netdata Agent on your production system will not use a disk.
403
404 &nbsp;<br/>&nbsp;<br/>
405 </details>