fallocate_with_keep_size is false for LogWrites

This commit is contained in:
Igor Canadi 2014-03-25 12:53:23 -07:00
parent d9ca83df28
commit 5c44a8db61

View File

@ -1363,7 +1363,7 @@ class PosixEnv : public Env {
EnvOptions OptimizeForLogWrite(const EnvOptions& env_options) const {
EnvOptions optimized = env_options;
optimized.use_mmap_writes = false;
optimized.fallocate_with_keep_size = true;
optimized.fallocate_with_keep_size = false;
return optimized;
}