Is there a graphical tool to display (and possibly modify) elasticsearch mappings?

I use https://github.com/mobz/elasticsearch-head , which is awesome (!), But it does not have this functionality.

After putting several indexes on the index, I would like to be able to view them graphically. Is it possible?

+5
source share
1 answer

You can create new indexes with new mappings. I used this to convert logstash mappings from one type to another. I used this reindex plugin for great success. This makes the flow of one index into another much simpler and requires essentially only 2 HTTP requests.

- :

$ curl -XPOST http://elnode:9200/<New Index Name> -d @<new mapping>.json
$ curl -XPUT  http://elnode:9200/<New Index Name>/logs/_reindex\?searchIndex=<Old Index Name>\&searchType=logs

. , .

, .

+3

All Articles