Retweak BASE and MULTIPLIER in rocksdb config. (#1445)

This commit is contained in:
Gav Wood 2016-06-27 09:20:38 +02:00 committed by GitHub
parent b3398cec33
commit 4f1f33d1b8
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ use std::default::Default;
use rocksdb::{DB, Writable, WriteBatch, IteratorMode, DBVector, DBIterator,
IndexType, Options, DBCompactionStyle, BlockBasedOptions, Direction};
const DB_FILE_SIZE_BASE: u64 = 16 * 1024 * 1024;
const DB_FILE_SIZE_MULTIPLIER: i32 = 5;
const DB_FILE_SIZE_BASE: u64 = 32 * 1024 * 1024;
const DB_FILE_SIZE_MULTIPLIER: i32 = 2;
const DB_BACKGROUND_FLUSHES: i32 = 2;
const DB_BACKGROUND_COMPACTIONS: i32 = 2;