-
Notifications
You must be signed in to change notification settings - Fork 0
Elastic Search
jaeseok.an edited this page Sep 17, 2019
·
12 revisions
- mapping 없을 때 동작
- string type이면 모든 field가 term/keyword 두 개 생성. keyword는 256이상이면 truncate
- number type은 long
- Text type
- 형태소 분석용이므로, aggregation 이나 정렬이 불가능
- Keyword type
- ignore_above 256 이면 256을 넘는 경우 empty로 저장되므로 조심할것
- Aggregation
- query의 결과 size와 관계없이 query 전체에 대해 aggregation은 동작함
- Query Debugging
POST movie/_validate/query?rewrite=true { "query" : {...} }
test