We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to Elasticsearch the valid choices are: request or async.
'translog.durability' => 'fsync', <-- Needs to be async or request
public function getInstallIndexSettings() { $settings = [ 'number_of_replicas' => $this->helper->getNumberOfReplicas(), 'refresh_interval' => self::DIFF_REINDEX_REFRESH_INTERVAL, 'translog.durability' => 'async', 'translog.disable_flush' => false, ]; return $settings; }
The text was updated successfully, but these errors were encountered:
Fix durability of indexing settings. Fix Smile-SA#168
b67a593
Merge pull request #176 from afoucret/fix-index_durability
7be19bf
Fix durability of indexing settings. Fix #168
PR #176 fix this one.
Sorry, something went wrong.
No branches or pull requests
According to Elasticsearch the valid choices are: request or async.
The text was updated successfully, but these errors were encountered: