Delete field mapping is impossible, but what is the technical restriction to add this feature?

I have no knowledge yet in Elastic Search source code, so I don't know if i'm too much naive thinking that if we had a feature to delete a field mapping, the only think to do would be to delete the inverted index for this field, and all the documents that have these field, would deal with it as an storaged only field. Am I being too naive?

Welcome!

I think that the main reason is that Lucene produces immutable segments. Meaning that you can not really "touch" them.
You could may be mark a field as deleted and wait for the next merge to actually remove its content.

I don't know how doable is that. @jpountz might tell.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.