for some reason when i have the UAX URL Email tokenizer and then i had my lower case analyzer the UAX URL Email tokenizer just stops working
"settings": {
"analysis": {
"analyzer": {
"analyzer_case_insensitive": {
"tokenizer": "keyword",
"filter": "lowercase"
},
"email_an": {
"tokenizer": "uax_url_email",
"filter": "lowercase"
}
}
},
"number_of_replicas": 0,
"auto_expand_replicas": false
}
heres my mappings:
"mappings": {
"properties": {
"username": {
"type": "keyword",
"analyzer":"analyzer_case_insensitive"
},
"email": {
"type": "keyword",
"analyzer":"email_an"
}
}
}
im new to elastic sorry if i dont understand the problem here