How do you update maps in elastic search?
How do you update maps in elastic search? Change the mapping of an existing fieldedit PUT /my-index-000001 { “mappings” : { “properties”: { “user_id”: { “type”: “long” } } } } POST /my-index-000001/_doc? PUT /my-new-index-000001 { “mappings” : { “properties”: { “user_id”: { “type”: “keyword” } } } } How do I refresh Elasticsearch index? […]