Hi.
I have an index created using dynamic mapping with a field set to the default ignore_above value of 256. I realized that the length is not nearly as high as I would need since the field can have stack traces.
I updated the field using the following syntax ...
PUT /dclogstash-2020.11.04
{
"mappings": {
"properties": {
"Message": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 3000
}
}
}
}
}
}
Now that the field is updated, it is my understanding that only new messages will be indexed accordingly, but I need all of the messages currently in the index to respect the update.
My question is how do I re-index my index to take advantage of the updated Keyword length?
Thanks.