So I have created two Transforms that have a common field of "computer_name", but when creating them one maps the field as text, with a sub keyword field, while the other marks the top field as keyword.
I have created an index template for the latter set as
"computer_name": {
"type": "text",
"fields": {
"keyword": {
"ignore_above": 256,
"type": "keyword"
}
}
},
But on re-creating the transform and index, it is still coming in with 'computer_name' as keyword, ignoring the template.
I need the two to behave the same in searches, so I need for them to match each other. Any advice?