Change default logfile chunk size to write
128k is the fastest size for NVME drives. For slower drives, it
shouldn't matter.
Change-Id: I5833a39474ff9b54dfc189da4468d836ba074afb
diff --git a/aos/events/logging/logfile_utils.cc b/aos/events/logging/logfile_utils.cc
index 0403423..4725801 100644
--- a/aos/events/logging/logfile_utils.cc
+++ b/aos/events/logging/logfile_utils.cc
@@ -17,7 +17,7 @@
#include "gflags/gflags.h"
#include "glog/logging.h"
-DEFINE_int32(flush_size, 1000000,
+DEFINE_int32(flush_size, 128000,
"Number of outstanding bytes to allow before flushing to disk.");
namespace aos {