검색엔진
6.[Elasticsearch] 용어 정리
노갱2
2017. 9. 20. 11:08
1. Elasticsearch 용어
1) index
- collection of different types of document under on logical namespace
(rdb에서 schema와 같은 역할)
- shard의 수 및 replica를 설정
- multitenant 지원 하고 자유로이 생성 및 삭제가능
2) type
- logical collection of documents like the same entity
(rdb에서 table와 같은 역할)
- table과 같은 domain objects 표현 (client, company, user...)
3) document
- logical unit that represents the instance of an entity
(rdb에서 row와 같은 역할)
- json object
4) field
- multiple fields that are organized as JSON key / value pairs.
(rdb에서 columns와 같은 역할)
출처: http://semode.tistory.com/30 [세모데]