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 [세모데]
'검색엔진' 카테고리의 다른 글
8.[Elasticsearch]/[ELK]. C# .NET 과 ELASTICSEARCH 연동 하여 개발 (0) | 2017.09.28 |
---|---|
7.[Elasticsearch] Logstash MSSQL 연동하기 (0) | 2017.09.20 |
5.[Elasticsearch] KIBANA로 데이터 조회 및 넣기 (0) | 2017.09.19 |
4.[Elasticsearch] Logstash다운로드 하기 (0) | 2017.09.15 |
3.[Elasticsearch] kibana 다운로드 하기 (0) | 2017.09.05 |