Created
May 29, 2019 16:33
-
-
Save KevinMarquette/f3349f37368cc88335e4691b0bcdf236 to your computer and use it in GitHub Desktop.
lowercase elastic keywords
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"template": "*", | |
"order": 0, | |
"mappings": { | |
"doc": { | |
"dynamic_templates": [ | |
{ | |
"strings_as_keywords": { | |
"match_mapping_type": "string", | |
"mapping": { | |
"type": "keyword", | |
"norms": false, | |
"normalizer": "lowercase_normalizer" | |
} | |
} | |
} | |
] | |
} | |
}, | |
"settings": { | |
"analysis": { | |
"normalizer": { | |
"lowercase_normalizer": { | |
"type": "custom", | |
"filter": ["lowercase"] | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment