일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- javascript
- jsp
- Design Patterns
- 맛집
- elasticsearch
- Git
- 요리
- java
- linux
- devops
- Web Server
- laravel
- tool
- MySQL
- Spring Batch
- php
- AWS
- ubuntu
- springboot
- IntelliJ
- Spring
- it
- jenkins
- JVM
- ReactJS
- Gradle
- Oracle
- Spring Boot
- db
- redis
Archives
- Today
- Total
아무거나
데이터 조회 본문
반응형
1. simple_basketball.json을 bulk로 데이터를 넣는다.
- curl -XPOST 'localhost:9200/_bulk' --data-binary @simple_basketball.json
# [json data 내용]
{ "index" : { "_index" : "basketball", "_type" : "record", "_id" : "1" } }
{"team" : "Chicago Bulls","name" : "Michael Jordan", "points" : 30,"rebounds" : 3,"assists" : 4, "submit_date" : "1996-10-11"}
{ "index" : { "_index" : "basketball", "_type" : "record", "_id" : "2" } }
{"team" : "Chicago Bulls","name" : "Michael Jordan","points" : 20,"rebounds" : 5,"assists" : 8, "submit_date" : "1996-10-11"}
2. bulk된 데이터를 조회
- curl -XGET 'localhost:9200/basketball/record/_search?pretty'
3. search 옵션중에 URI라는 옵션을 사용해보자.
- curl -XGET 'localhost:9200/basketball/record/_search?q=points:30&pretty' // 쿼리는 points가 30인것만 나타내면 조건상 1개의 도큐먼트만 나타난다
4. search 옵션중에 request body 옵션을 사용하자
[ex1]
curl -XGET 'localhost:9200/basketball/record/_search?pretty' -d'
{
"query" : {
"term" : { "points" : 30 }
}
}
'
[header를 넣은 ex2]
curl -XGET 'localhost:9200/basketball/record/_search?pretty' -H 'Content-Type: application/json' -d'
{
"query" : {
"term" : { "points" : 30 }
}
}
'
반응형
'Data Store > Elastic Stack' 카테고리의 다른 글
버킷 어그리게이션(Bucket Aggregation) (0) | 2019.05.10 |
---|---|
메트릭 어그리게이션(Metric Aggregation) (0) | 2019.05.09 |
MAPPING (SCHEMA) (0) | 2019.05.08 |
벌크(BULK) INSERT (0) | 2019.05.08 |
데이터 업데이트(UPDATE) (0) | 2019.05.07 |
Comments