Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
EinsamHauer committed Apr 23, 2016
1 parent d6e25ca commit 89393a5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Expand Up @@ -77,6 +77,18 @@ CREATE TABLE metric (
compression={'sstable_compression': 'LZ4Compressor'};
```

Your mileage may vary but generally (as graphite like systems are closer to write only/read never type) one would benefit from changing
```
compression={'sstable_compression': 'LZ4Compressor'};
```
to
```
compression={'sstable_compression': 'DeflateCompressor'};
```
This will probably save ~25% on disk storage and quite some IO on reads at the cost of slightly increased CPU.


## Configuration
There several configuration files involved
* /etc/disthene/disthene.yaml (location can be changed with -c command line option if needed)
Expand Down

0 comments on commit 89393a5

Please sign in to comment.