InfluxDb Storage
- Over the releases InfluxDb has changed its storage engine
- Today v1.3 storage engine looks very similar to a LSM Tree
- Log-Structured Merge-Tree
- LSM Tree is designed to provide low-cost indexing for files experiencing a high rate of writes
- LSM Tree gives an advantage to a high update rate compared to a retrieval rate
- A common property for history tables and for log files
- Detailed documentation on storage engines