10000 Deprecate rocksdb.max-write-buffer-number startup option by Simran-B · Pull Request #9654 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Deprecate rocksdb.max-writ 8000 e-buffer-number startup option #9654

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 9, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
File moved
  • Loading branch information
Simran-B committed Oct 9, 2019
commit e45cf42f94e9d85c8d34db8a99273855e2ec4350
4 changes: 3 additions & 1 deletion arangod/StorageEngine/RocksDBOptionFeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ void RocksDBOptionFeature::collectOptions(std::shared_ptr<ProgramOptions> option
new UInt64Parameter(&_writeBufferSize));

options->addOption("--rocksdb.max-write-buffer-number",
"maximum number of write buffers that built up in memory",
"maximum number of write buffers that build up in memory "
"(default: number of column families + 2 = 9 write buffers). "
"You can increase the amount only",
new UInt64Parameter(&_maxWriteBufferNumber));

options->addOption("--rocksdb.max-total-wal-size",
Expand Down
Loading
0