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
- kuromoji
- python
- 조건문
- json
- UNIX
- elif문
- NumPy
- mapping
- Size
- 반복문
- 셸
- 학습일지
- else문
- 제로베이스부트캠프
- ElasticSearch
- for문
- 블록구조
- pm
- 파이썬
- while문
- 제로베이스
- bulk
- 일본어형태소분석기
- if문
- 매핑
- shell
- pm스쿨28기
- kibana
- 제로베이스pm스쿨
Archives
- Today
- Total
목록mapping (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