반응형
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
- Java
- auth
- 전자소송
- Tutorial
- 홈택스
- php
- vue
- 개인사업자
- 소액임금체불
- blockchain
- as후기
- 사업자계좌
- Laravel
- 체당금
- 당사자표시정정신청서
- Bootstrap
- 코로나19
- 코로나
- javascript
- Sentinel
- 인민공원
- reactnative
- elasticSearch
- 이더리움
- win32
- Eclipse
- Blade
- Python
- cartalyst
- 보정명령
Archives
- Today
- Total
그냥 사는 이야기
ElasticSearch - index_document_CRUD_mapping 본문
반응형
Elasticserarch
curl -X GET http://localhost:9200?pretty
{
"name" : "Vett6lF",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "-GeFznOrQkqjg7qpyNysiw",
"version" : {
"number" : "6.4.2",
"build_flavor" : "default",
"build_type" : "tar",
"build_hash" : "04711c2",
"build_date" : "2018-09-26T13:34:09.098244Z",
"build_snapshot" : false,
"lucene_version" : "7.4.0",
"minimum_wire_compatibility_version" : "5.6.0",
"minimum_index_compatibility_version" : "5.0.0"
},
"tagline" : "You Know, for Search"
}
인덱스 확인
curl -X GET http://localhost:9200/classes?pretty
index 생성
curl -X PUT http://localhost:9200/classes
index 삭제
curl -X DELETE http://localhost:9200/classes
Document 생성
curl -XPOST http://locahost:9200/classes/class/1/ -H ‘Content-Type: application/json’ -d ’{“title”:"Algorithm","professor":"John"}'
확인
curl -X GET http://localhost:9200/classes/class/1?pretty
Document 생성 with file
curl -X POST http://localhost:9200/classes/class/1/ -H 'Content-Type:application/json' -d @test.json
update
curl -XPOST http://localhost:9200/classes/class/1/_update?pretty -H 'Content-Type: application/json' -d' {"doc":{"unit":1}}'
update one field with script
curl -XPOST http://localhost:9200/classes/class/1/_update? -H 'Content-Type: application/json' -d' {"script":"ctx._source.unit +=5"}'
bulk update
curl -XPOST http://localhost:9200/_bulk?pretty -H 'Content-Type: application/json' --data-binary @classes.json
bulk mapping
curl -X PUT "localhost:9200/classes/_mapping/class" -H 'Content-Type: application/json' -d @classesRating_mapping.json
ElasticSearch 6.x 부터는 mapping type 중 string 이 text 로 변경되었다.
classesRating_mapping.json
{
"properties" : {
"title" : {
"type" : "text"
},
"professor" : {
"type" : "text"
},
"major" : {
"type" : "text"
},
"semester" : {
"type" : "text"
},
"student_count" : {
"type" : "integer"
},
"unit" : {
"type" : "integer"
},
"rating" : {
"type" : "integer"
},
"submit_date" : {
"type" : "date",
"format" : "yyyy-MM-dd"
},
"school_location" : {
"type" : "geo_point"
}
}
}
이렇게 type mapping을 한 후 다시 bulk insert를 해주면 정확한 type대로 데이터를 넣는다.
'Development > 기타' 카테고리의 다른 글
Kibana - Search, Aggregation (0) | 2020.01.25 |
---|---|
ElasticSearch - Search, Aggregation (0) | 2020.01.25 |
Visual Studio에서 마우스 4,5 버튼 사용하기 (1) | 2014.02.27 |
오라클 Table에선 BOOLEAN 형이 없다 (0) | 2013.02.18 |
Incompatible operand types int and String 에러 수정 (0) | 2013.01.29 |
Comments