Elastic Search Mapping For Larger Documents
Incase there is a very huge document that needs to be stored in a type in ES. Creating mapping could be tedious. An alternative could be to first insert the large json obejct by creating a new index and type. You can then extract the mapping using the below command in Kibana or the equivalent curl.
GET mapping Kibana
GET /test_index
/_mapping/test_type
Comments
Post a Comment