일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Linux
- elastic search
- nginx
- Angular2
- hadoop
- DDD
- 스프링 배치
- Hbase
- design pattern
- 도메인주도설계
- docker
- intellij
- SBT
- apache storm
- elasticsearch
- 제주
- Gradle
- Spring XD
- scala
- Spring
- 엘라스틱서치
- 인텔리J
- hibernate
- Spring Batch
- Storm
- spark
- Java
- Clean Code
- hdfs
- Spring Boot
Archives
- Today
- Total
목록nested objects (1)
욱'S 노트
Elasticsearch - Modeling Your Data:Nested Objects
엘라스틱서치에서 하나의 도큐먼트에 대한 생성, 삭제, 업데이트는 atomic하다. 이 의미는 같은 도큐먼트내에 저장된 엔티티에도 동일하다. 예를 들어 우리는 블로그포스트와 그의 코멘트를 하나의 도큐먼트로 저장할 수 있다. PUT /my_index/blogpost/1{ "title": "Nest eggs", "body": "Making your money work...", "tags": [ "cash", "shares" ], "comments": [ { "name": "John Smith", "comment": "Great article", "age": 28, "stars": 4, "date": "2014-09-01" }, { "name": "Alice White", "comment": "More like..
Programming/Elasticsearch
2016. 1. 18. 15:54