mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +01:00
ircd::db: Fix SST file creation on open; disable sst mgr to remove extra thread spawn.
This commit is contained in:
parent
da04032cc4
commit
3ba3ef46af
1 changed files with 2 additions and 1 deletions
|
@ -578,7 +578,7 @@ try
|
|||
}
|
||||
,ssts
|
||||
{
|
||||
rocksdb::NewSstFileManager(env.get(), logs, {}, 0, true, nullptr, 0.05)
|
||||
//rocksdb::NewSstFileManager(env.get(), logs, {}, 0, true, nullptr, 0.05)
|
||||
}
|
||||
,cache{[this]
|
||||
() -> std::shared_ptr<rocksdb::Cache>
|
||||
|
@ -652,6 +652,7 @@ try
|
|||
opts.max_file_opening_threads = 0;
|
||||
opts.stats_dump_period_sec = 0;
|
||||
opts.enable_thread_tracking = true;
|
||||
opts.avoid_flush_during_recovery = true;
|
||||
opts.delete_obsolete_files_period_micros = 0;
|
||||
opts.max_background_jobs = 2;
|
||||
opts.max_background_flushes = 1;
|
||||
|
|
Loading…
Reference in a new issue