I am new to AWS opensearch, and I am having issues with field_limits within a month the field_limits that is really small and its been exceeded had been raised more than four times, giving index problems.
Do note I dont to raise the limits any more.
a snapshot from my index
GET /zonade/_mapping
returned the following
{
"events": {
"mappings": {
"properties": {
"456": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"Artthee": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"Movie Name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
}
}
}
}
For normalization I need to implement the following rules.
all words should be lowercase
all_spaces_should_be_replaced_by_underscores
would be grateful if I can get any suggestion on how to solve the issue