일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MySQL
- mybatis
- Spring Boot
- datasource
- hikari
- bitbucket
- STS
- ubuntu
- 라즈베리파이
- 배열스트링
- python 개발환경
- springboot
- ORACLE CLOUD
- log4j profile
- catalina log
- Gradle
- Linux
- intellij
- oracle between
- between 날짜
- git
- between date
- hikaricp
- template
- github
- oracle
- log4j2
- Java
- Spring Security
- Spring
Archives
- Today
- Total
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MySQL
- mybatis
- Spring Boot
- datasource
- hikari
- bitbucket
- STS
- ubuntu
- 라즈베리파이
- 배열스트링
- python 개발환경
- springboot
- ORACLE CLOUD
- log4j profile
- catalina log
- Gradle
- Linux
- intellij
- oracle between
- between 날짜
- git
- between date
- hikaricp
- template
- github
- oracle
- log4j2
- Java
- Spring Security
- Spring
Archives
- Today
- Total
파워노트
ElasticSearch index Mapping 본문
반응형
# Index Mapping 예제
curl -XDELETE 'localhost:9200/b_vod?pretty'
curl -XPUT 'localhost:9200/b_vod?pretty' -H 'Content-Type: application/json' -d' {
"mappings": {
"*":{
"_all": { "enabled": false },
"properties": {
"broad_no": { "type": "integer" },
"cdn_loc_cd": { "type": "integer" },
"level": { "type": "integer" },
"m_rank_1": { "type": "integer" },
"m_rank_2": { "type": "integer" },
"m_rank_3": { "type": "integer" },
"p_time": { "type": "integer" },
"pre_sale_prc": { "type": "integer" },
"rating": { "type": "keyword", "fields": { "raw": { "type": "float" } } },
"sale_prc": { "type": "integer" },
"schd_sale_prc": { "type": "integer" },
"score_star": { "type": "float" },
"script": { "type": "keyword", "ignore_above": 256 },
"seq_no": { "type": "integer" },
"t_rank_1": { "type": "integer" },
"t_rank_2": { "type": "integer" },
"t_rank_3": { "type": "integer" }
}
}
}
}'
반응형
'ElasticSearch' 카테고리의 다른 글
bootstrap checks failed vm.max_map_count 관련 (0) | 2020.11.27 |
---|---|
logstash 기본 사용 (0) | 2020.11.26 |
ElasticSearch max_result_window 설정 (0) | 2020.11.10 |
Elasticsearch 사용법 (0) | 2020.11.10 |
Comments