From 810888b53c3f5b4619b35e71db479d54e1c15b21 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 19 Apr 2019 00:17:00 -0700 Subject: [PATCH] ircd::db: Allow concurrent memtable write. --- ircd/db.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/db.cc b/ircd/db.cc index e6856b238..a11146985 100644 --- a/ircd/db.cc +++ b/ircd/db.cc @@ -1072,7 +1072,7 @@ try // These values prevent codepaths from being taken in rocksdb which may // introduce issues for ircd::ctx. We should still fully investigate // if any of these features can safely be used. - opts->allow_concurrent_memtable_write = false; + opts->allow_concurrent_memtable_write = true; opts->enable_write_thread_adaptive_yield = false; opts->enable_pipelined_write = false; opts->write_thread_max_yield_usec = 0;