diff options
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fead31e97..46145a9f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,27 @@ ## +- Feature: Add per bucket cache configuration (Lua options file only) + + cache = { + bucket = { -- This is the default for all namespaces + maxblocksize = 1073741824, + payloadalignment = 4, + memlayer = { + sizethreshold = 1024, + }, + largeobjectthreshold = 2097152, + }, + buckets = { -- Here you can add matching per bucket name (matches accross namespaces) + iostorecompression = { + maxblocksize = 1073741824, + payloadalignment = 4, + memlayer = { + sizethreshold = 1024, + }, + largeobjectthreshold = 2097152, + }, + }, + } +- Improvement: `--cache-memlayer-sizethreshold` is now deprecated and has a new name: `--cache-bucket-memlayer-sizethreshold` to line up with per cache bucket configuration - Bugfix: Handle invalid plugin config file without terminating - Bugfix: Gracefully handle errors while running `oplog-mirror` - Improvement: Remove CAS log files at startup when we write full state index |