Skip to content

Instantly share code, notes, and snippets.

@faxm0dem
Created July 24, 2015 15:26
Show Gist options
  • Select an option

  • Save faxm0dem/c0594d69e4355f0f8b3b to your computer and use it in GitHub Desktop.

Select an option

Save faxm0dem/c0594d69e4355f0f8b3b to your computer and use it in GitHub Desktop.
Elasticsearch set doc_values as default
{
"mappings" : {
"_default_" : {
"dynamic_templates" : [
{
"string_fields" : {
"match" : "*",
"match_mapping_type" : "string",
"mapping" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : true
}
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment