I know I can disable the field length norm on a field in index time with following like mapping:
{
"mappings": {
"doc": {
"properties": {
"text": {
"type": "string",
"norms": { "enabled": false }
}
}
}
}
}
But is it possible to disable the length norm in search time on an already created index?