Elasticsearch
Change the type of an existing field in elasticsearch
In Elasticsearch, you cannot directly change the mapping of an existing field. Instead, you’ll need to create a new index with the desired mapping and reindex your data from the old index to the new one. Here’s a step-by-step process: Replace new-index-name with the name of the new index, your_field Lire la suite…