Skip to content

Instantly share code, notes, and snippets.

@belevian
belevian / gist:46026b88500d264fbc66
Created September 8, 2014 16:51
query_total is wrong for groups stats at shards level
curl -XDELETE 'http://localhost:9200/_all?pretty'
curl -XPUT 'http://localhost:9200/test/?pretty' -d '
{
"index": {
"number_of_shards": 2,
"number_of_replicas": 0
}
}
'
@belevian
belevian / gist:1524253
Created December 27, 2011 16:27
Document boost not applied to numeric fields with ES
#######
# creation of an index foo
#######
curl -XPUT 'http://127.0.0.1:9200/foo/?pretty=true' -d '
{
"index" : {
"number_of_shards" : 1,
"number_of_replicas" : 0
}