Skip to content

Instantly share code, notes, and snippets.

@selcukusta
Created March 1, 2018 08:42
Show Gist options
  • Select an option

  • Save selcukusta/7f6ca7d66fbc91b9e0ba2e584d3bbbfe to your computer and use it in GitHub Desktop.

Select an option

Save selcukusta/7f6ca7d66fbc91b9e0ba2e584d3bbbfe to your computer and use it in GitHub Desktop.
PUT /first_index HTTP/1.1
{
"settings": {
"number_of_shards": 1,
"number_of_replicas": 0,
"analysis": {
"analyzer": {
"default": {
"filter": [
"lowercase",
"asciifolding",
],
"tokenizer": "standard"
}
}
}
},
"mappings": {
"city": {
"properties": {
"name": {
"type": "text",
"analyzer": "default",
"fields": {
"sortable": {
"type": "keyword",
"index" : false
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment