Skip to content

Instantly share code, notes, and snippets.

View rkarakaya's full-sized avatar

Ramazan rkarakaya

  • turkey
View GitHub Profile
@rkarakaya
rkarakaya / es_curls
Created October 27, 2013 19:21
revert metadata blocking setting
//create an index
curl -XPUT 'http://127.0.0.1:9200/test1'
{
"settings": {
"index": {
"number_of_shards": 1,
"number_of_replicas": 0
}
}
}