elasticsearch - Elastic search add properties to an index from existing index -
i have index named video in elasticsearch. want add properties of video index. here example:
"video": { "properties": { "videolistid": { "type": "integer" }, "id": { "type": "integer" } } } "category":{ "properties": { "video": { "type": "nested","properties": { "videolistid": { "type": "integer" }, "id": { "type": "integer" } } }, } } so each category has videos of same type in video index
Comments
Post a Comment