From 009fa899a9cdc851858dcd16648dcb3c2001b5d7 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 2 Jul 2013 23:37:52 -0700 Subject: [PATCH] Remove the compaction delay. Somehow it's not helping. --- Subtrees/leveldb/db/db_impl.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/Subtrees/leveldb/db/db_impl.cc b/Subtrees/leveldb/db/db_impl.cc index af02467b3..0de9ca746 100644 --- a/Subtrees/leveldb/db/db_impl.cc +++ b/Subtrees/leveldb/db/db_impl.cc @@ -822,9 +822,6 @@ Status DBImpl::FinishCompactionOutputFile(CompactionState* compact, (unsigned long long) output_number, (unsigned long long) current_entries, (unsigned long long) current_bytes); - - // rate-limit compaction file creation with a 100ms pause - env_->SleepForMicroseconds(100000); } } return s;