From b67a593417b655dd33efb047880ed456bbe2182c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?= Date: Fri, 21 Oct 2016 06:07:25 +0200 Subject: [PATCH] Fix durability of indexing settings. Fix #168 --- src/module-elasticsuite-core/Index/IndexSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module-elasticsuite-core/Index/IndexSettings.php b/src/module-elasticsuite-core/Index/IndexSettings.php index e018e036b..9e542d049 100644 --- a/src/module-elasticsuite-core/Index/IndexSettings.php +++ b/src/module-elasticsuite-core/Index/IndexSettings.php @@ -131,7 +131,7 @@ public function getInstallIndexSettings() $settings = [ 'number_of_replicas' => $this->helper->getNumberOfReplicas(), 'refresh_interval' => self::DIFF_REINDEX_REFRESH_INTERVAL, - 'translog.durability' => 'fsync', + 'translog.durability' => 'request', 'translog.disable_flush' => false, ];