Hi
when defining a mapping as
PUT spl
{
"mappings": {
"spl": {
"properties": {
"list": {
"type": "keyword"
}
}
}
}
}
The fields selection in the visualization / aggregation setup shows a field list.keyword, but the aggregation does not find any data. ( Terms aggregation works with DSL fo rhti smapping)
Setting up the mapping as
PUT spl
{
"mappings": {
"spl": {
"properties": {
"list": {
"type": "keyword",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
}
}
fixes the issues, but is this not a bit redundant ?
Or is there something else incorrect in my mapping / understanding
Thanks