Skip to content
New issue

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

in ElasticSuiteCore/Index/IndexSettings.php 'translog.durability' => 'fsync', is invalid #168

Closed
southerncomputer opened this issue Oct 17, 2016 · 1 comment
Labels
Milestone

Comments

@southerncomputer
Copy link
Contributor

southerncomputer commented Oct 17, 2016

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;
    }
afoucret pushed a commit to afoucret/elasticsuite that referenced this issue Oct 21, 2016
@afoucret afoucret added this to the 2.3 milestone Oct 21, 2016
afoucret added a commit that referenced this issue Oct 21, 2016
Fix durability of indexing settings. Fix #168
@afoucret
Copy link
Contributor

PR #176 fix this one.

@afoucret afoucret added the bug label Oct 21, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants