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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -