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
In a regular no-op reconciliation when no change happens we perform several calls to _cluster/settings:
_cluster/settings
GET /_cluster/settings
PUT /_cluster/settings
Could we optimize to a single GET from which we reuse the result during the reconciliation, and don't do the PUTs if not required?
PUT
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In a regular no-op reconciliation when no change happens we perform several calls to
_cluster/settings
:GET /_cluster/settings
to fetch remote clusters configurationPUT /_cluster/settings
to set zen1 minimum_master_nodesPUT /_cluster/settings
to reset cluster routing allocation excludes to none when there are no nodes to migrate data away fromGET /_cluster/settings
to know whether we need to re-enable shards allocation after a rolling upgradeCould we optimize to a single GET from which we reuse the result during the reconciliation, and don't do the
PUT
s if not required?The text was updated successfully, but these errors were encountered: