about summary refs log tree commit diff
path: root/src/libstore/gc.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-11-19T17·02+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-11-19T17·14+0100
commit8299aaf07988a3ca7ecda3526b7e25a885550db5 (patch)
tree955f64f933f4330df2e44f6b1e589d06a6506103 /src/libstore/gc.cc
parenta3e5c99d66e111455c6ddc40759005718016c8dd (diff)
Disable vacuuming the DB after garbage collection
Especially in WAL mode on a highly loaded machine, this is not a good
idea because it results in a WAL file of approximately the same size
ad the database, which apparently cannot be deleted while anybody is
accessing it.
Diffstat (limited to 'src/libstore/gc.cc')
-rw-r--r--src/libstore/gc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/gc.cc b/src/libstore/gc.cc
index 0806430efe..49cb11d232 100644
--- a/src/libstore/gc.cc
+++ b/src/libstore/gc.cc
@@ -724,7 +724,7 @@ void LocalStore::collectGarbage(const GCOptions & options, GCResults & results)
     }
 
     /* While we're at it, vacuum the database. */
-    if (options.action == GCOptions::gcDeleteDead) vacuumDB();
+    //if (options.action == GCOptions::gcDeleteDead) vacuumDB();
 }