른록노트
[Elasticsearch] Nested란? 중첩될 수 있는 다중 필드 본문
my_index
{
"mappings": {
"my_type": {
"properties": {
"user": {
"type": "nested"
}
}
}
}
}
my_index/my_type/1 { "group" : "fans", "user" : [ { "first" : "John", "last" : "Smith" }, { "first" : "Alice", "last" : "White" } ] }
이런식으로 넣을 수 있음
참고사이트
https://www.elastic.co/guide/en/elasticsearch/reference/5.5/nested.html
반응형
Comments