Skip to content

Instantly share code, notes, and snippets.

@epplestun
Created February 14, 2014 15:59
Show Gist options
  • Save epplestun/9003599 to your computer and use it in GitHub Desktop.
Save epplestun/9003599 to your computer and use it in GitHub Desktop.
curl -XPUT 'buntreports:9200/ose' -d '
{
"settings": {
"analysis": {
"analyzer": {
"autocomplete": {
"type": "custom",
"tokenizer": "standard",
"filter": ["standard", "lowercase", "kstem", "edgeNGram"]
}
},
"filter" : {
"ngram" : {
"type": "edgeNGram",
"min_gram": 2,
"max_gram": 15
}
}
}
},
"mappings" : {
"contador" : {
"properties" : {
"region" : {
"type" : "string",
"analyzer" : "autocomplete"
}
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment