I have an index which has around 10 fields that are marked as
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
now I created another index with same mappings except that I marked all the text fields as just keyword
{
"type": "keyword"
}
now reindexed all the documents(500000 docs) from source to destination
and when I check the size of the index, I dont see any difference between new index and original index
I expected the new index should have less size as I removed 8 text fields ?
can someone explain this behaviour ?