Skip to content

Instantly share code, notes, and snippets.

@c0mpiler
Last active March 8, 2018 20:05
Show Gist options
  • Save c0mpiler/545a1886d4334db630101c068bcd236f to your computer and use it in GitHub Desktop.
Save c0mpiler/545a1886d4334db630101c068bcd236f to your computer and use it in GitHub Desktop.
ElasticSearch settings
root@harsha:~# curl -XPUT 'localhost:9200/_settings?pretty' -H 'Content-Type: application/json' -d' { "index": { "refresh_interval": "30s" } } '
{
"acknowledged" : true
}
root@harsha:~# curl -XPUT 'localhost:9200/_settings?pretty' -H 'Content-Type: application/json' -d' { "index": { "number_of_replicas": "0" } } '
{
"acknowledged" : true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment