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

Update Settings: Allow to control index.auto_expand_replicas #799

Closed
kimchy opened this issue Mar 21, 2011 · 1 comment
Closed

Update Settings: Allow to control index.auto_expand_replicas #799

kimchy opened this issue Mar 21, 2011 · 1 comment

Comments

@kimchy
Copy link
Member

kimchy commented Mar 21, 2011

Allow to change the index.auto_expand_replicas setting dynamically using update setting. Also, allow it to be set to false, basically, disabling it. For example:

curl -XPUT localhost:9200/test -d '{
    "settings" : {
        "index" : {
            "number_of_shards" : 1,
            "auto_expand_replicas" : "0-all"
        }
    }
}'

curl -XPUT localhost:9200/test/_settings -d '{
    "index" : {
        "number_of_replicas" : 0,
        "auto_expand_replicas" : false
    }
}'

curl -XPUT localhost:9200/test/_settings -d '{
    "index" : {
        "auto_expand_replicas" : "0-all"
    }
}'
@kimchy
Copy link
Member Author

kimchy commented Mar 21, 2011

Update Settings: Allow to control index.auto_expand_replicas, closed by 8f8fb89.

@kimchy kimchy closed this as completed Mar 21, 2011
mindw pushed a commit to mindw/elasticsearch that referenced this issue Sep 5, 2022
)

Added Auth0 in content-src response header for csp

* added var to enable auth0 when stack_env is dev || test
* add string in content-src to allow auth0
* Removed comment with ticket number

Approved-by: Gabi Davar
emilykmarx pushed a commit to emilykmarx/elasticsearch that referenced this issue Dec 26, 2023
…c#799)

* Update build scripts to support downloading ES >= 6.3

* Update travis build target
* Update artifact downloads to pull oss and standard versions of Elasticsearch when version >= 6.3.0
* Update method to add users for ES > 6.3.0
* Remove redundant test for 6.2.4
* Use rake `12.2.1` for builds using jruby-1.7.x
* Tidy up, and fix secure integration tests
* Adds a DISTRIBUTION environment variable, which can be:
    legacy: OSS < 6.3
    legacyxpack: < 6.3 with xpack plugin
    oss: OSS >= 6.3
    default: standard distribution >= 6.3
* Removes the exclusion filter for `secure_integration` - this was stopping
  secure integration tests from running even with tags on
* Updates logstash branch in travis.yml to 6.4
* Update version of Gradle used to build es
  Later versions of Elasticsearch require a later version of Gradle
  in order to build
* Fix for flaky tests
  Build the client, and set the mocks on that client before calling
    register to avoid race conditions
* Remove unnecessary add-on from Travis build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant