티뮤

엘라스틱 서치 기본 용어, 기본 사용방법 본문

IT/ElasticSearch

엘라스틱 서치 기본 용어, 기본 사용방법

티뮤 2022. 4. 22. 20:37
728x90

1. 엘라스틱 서치 용어 (vs RDB)

Realation DB ElasticSearch
Database Index
Table Type
Row Document
Column Field
Schema Mapping
Realation DB ElasticSearch CRUD
Select GET Read
Update PUT Update
Insert POST Create
Delete DELETE Delete

2. INDEX가 존재하는지 확인

http://localhost:9200/[index명]

리눅스 : curl -XGET http://localhost:9200/[index명]

윈도우 : 브라우저창에서 URL 입력

해당 INDEX가 존재하지 않는 경우 (404 에러 발생)

※ URL 끝에 pretty를 붙여주면 json 형태로 보기 좋게 출력된다.

728x90
Comments