From e0e574f8d96a424a9611667cbcf136f998df8acb Mon Sep 17 00:00:00 2001 From: Todd Gruben Date: Mon, 23 Jun 2014 16:25:41 -0500 Subject: [PATCH] shrunk batch again --- index/storage_cass.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index/storage_cass.go b/index/storage_cass.go index 514510e0b..c9514598e 100644 --- a/index/storage_cass.go +++ b/index/storage_cass.go @@ -56,7 +56,7 @@ func NewCassStorage() Storage { obj.batch_time = time.Now() obj.batch_counter = 0 obj.cass_time_window_secs = float64(config.GetIntDefault("cassandra_time_window_secs", 5)) - obj.cass_flush_size = config.GetIntDefault("cassandra_max_size_batch", 30) + obj.cass_flush_size = config.GetIntDefault("cassandra_max_size_batch", 15) return obj }