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

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -