I imported some data , one of the fields had a mapping of type "text" , i later modified the mapping using the following.
PUT /restaurant_data/_mapping
{
"properties": {
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
I also did a refresh index from index management. When applying filters in the discover , i am not getting any of the values. What am i missing ?