Commit af80d03c authored by Bjoern Rabenstein's avatar Bjoern Rabenstein

Improvements after code review.

parent 5aaf178c
...@@ -8,7 +8,8 @@ nav_icon: database ...@@ -8,7 +8,8 @@ nav_icon: database
Prometheus has a sophisticated local storage subsystem. For indexes, Prometheus has a sophisticated local storage subsystem. For indexes,
it uses [LevelDB](https://github.com/google/leveldb). For the bulk it uses [LevelDB](https://github.com/google/leveldb). For the bulk
sample data, it has its own custom storage layer, which organizes sample data, it has its own custom storage layer, which organizes
sample data in chunks of constant size (1024 bytes payload). sample data in chunks of constant size (1024 bytes payload). These
chunks are then stored on disk in one file per time series.
## Memory usage ## Memory usage
...@@ -33,11 +34,12 @@ times more RAM available than needed by the memory chunks alone. ...@@ -33,11 +34,12 @@ times more RAM available than needed by the memory chunks alone.
LevelDB is essentially dealing with data on disk and relies on the LevelDB is essentially dealing with data on disk and relies on the
disk caches of the operating system for optimal performance. However, disk caches of the operating system for optimal performance. However,
it maintains in-memory caches, whose size you can configure for each it maintains in-memory caches, whose size you can configure for each
index via the flags index via the following flags:
`storage.local.index-cache-size.fingerprint-to-metric`,
`storage.local.index-cache-size.fingerprint-to-timerange`, * `storage.local.index-cache-size.fingerprint-to-metric`
`storage.local.index-cache-size.label-name-to-label-values`, and * `storage.local.index-cache-size.fingerprint-to-timerange`
`storage.local.index-cache-size.label-pair-to-fingerprints`. * `storage.local.index-cache-size.label-name-to-label-values`
* `storage.local.index-cache-size.label-pair-to-fingerprints`
## Disk usage ## Disk usage
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment