Skip to content

Instantly share code, notes, and snippets.

@kscc25
Last active October 30, 2017 10:46
Show Gist options
  • Save kscc25/1e9422be4cd875fc7926295fde702a4d to your computer and use it in GitHub Desktop.
Save kscc25/1e9422be4cd875fc7926295fde702a4d to your computer and use it in GitHub Desktop.
{
"settings": {
"analysis": {
"analyzer": {
"my_email_analyzer": {
"type": "custom",
"tokenizer": "uax_url_email",
"filter": ["lowercase", "stop"]
}
}
}
},
"mappings": {
"message": {
"properties": {
"content": {
"type": "string",
"search_analyzer": "my_email_analyzer",
"fields": {
"my_field": {
"type": "string",
"analyzer": "my_email_analyzer"
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment