Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Sort
- 제로베이스pm스쿨
- shell
- json
- if문
- 파이썬
- pm스쿨28기
- kibana
- 블록구조
- while문
- elif문
- kuromoji
- ElasticSearch
- pm
- mapping
- 일본어형태소분석기
- bulk
- 학습일지
- else문
- for문
- NumPy
- 제로베이스
- 반복문
- 셸
- 매핑
- 제로베이스부트캠프
- UNIX
- python
- Size
- 조건문
Archives
- Today
- Total
목록매핑 (1)
code name blue
elasticsearch : mapping
elasticsearch 6.4.3 version mapping이란? elasticsearch의 index에 들어가는 데이터의 타입을 정의하는 것이다. 미리 index를 생성하고 mapping을 지정하는 것이 좋지만, 사용자가 mapping을 정의하지 않더라도 elasticsearch에서 자동으로 데이터 타입을 mapping 해준다. index 생성하기 1 2 3 4 5 6 PUT /test/movie/1 { "title": "Eternal Sunshine", "director": "Michel Gondry", "genre": "Romance" } 'test'라는 인덱스에 'movie'라는 타입으로 위와 같은 데이터를 생성하였다. mapping 조회하기 1 GET /test/movie/_mapping '..
Programming/Elasticsearch
2019. 10. 4. 16:54