Skip to content

Instantly share code, notes, and snippets.

@palawer
Last active July 20, 2022 07:19
Show Gist options
  • Save palawer/22cf6cd5b3ee70c036fa412ac4d33fef to your computer and use it in GitHub Desktop.
Save palawer/22cf6cd5b3ee70c036fa412ac4d33fef to your computer and use it in GitHub Desktop.
Elasticsearch dynamic templates
{
"settings" : {
"number_of_shards" : 1,
"number_of_replicas" : 1
},
"mappings": {
"doc_name": {
"dynamic_templates": [{
"field_prefix": {
"match": "field_*",
"mapping": {"type": "string", "index": "not_analyzed"}
},
"strings": {
"match_mapping_type": "string",
"mapping": {"type": "string", "index": "not_analyzed"}
}
}],
"properties": {
"field1" : {"type": "double"},
"field2" : {"type": "double"},
"field3" : {"type": "string", "index": "not_analyzed"}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment