Skip to content

Commit

Permalink
Merge pull request #176 from afoucret/fix-index_durability
Browse files Browse the repository at this point in the history
Fix durability of indexing settings. Fix #168
  • Loading branch information
afoucret authored Oct 21, 2016
2 parents 9b48d99 + b67a593 commit 7be19bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module-elasticsuite-core/Index/IndexSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
];

Expand Down

0 comments on commit 7be19bf

Please sign in to comment.