일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- high level client
- springboot
- analyzer test
- Mac
- Elasticsearch
- aggregation
- Test
- flask
- docker
- plugin
- MySQL
- TensorFlow
- license delete
- zip 암호화
- ELASTIC
- License
- aggs
- Java
- token filter test
- licence delete curl
- zip 파일 암호화
- 차트
- Python
- Kafka
- matplotlib
- query
- 파이썬
- sort
- 900gle
- API
- Today
- Total
개발잡부
[es8] aggregation - Pipeline Aggregations 본문
Elasticsearch aggregation 을 테스트 해보려고 한다. 그중에서도 Pipeline Aggregations
우선 내 신상 ES 로 이동
/Users/doo/docker/es8.8.1
실행해보자
(base) ➜ es8.8.1 docker compose up -d --build
우선 키바나를 접속해보자
http://localhost:5601/app/home#/
오케이
인덱스는 언제더라.. 어젠가 그젠가 만들어 놓은 인덱스
820만건의 location 정보
mapping 구조
{
"location-index": {
"mappings": {
"dynamic": "true",
"properties": {
"addr1": {
"type": "keyword"
},
"city": {
"type": "keyword"
},
"country": {
"type": "keyword"
},
"country_code": {
"type": "keyword"
},
"location": {
"type": "geo_point"
},
"no": {
"type": "keyword"
},
"private_ip": {
"type": "ip"
},
"public_ip": {
"type": "ip"
},
"timestamp": {
"type": "date"
}
}
}
}
}
얼레 timestamp 가 비어있네
ingest pipeline 을 만들어서 timestamp 를 찍어보잣
https://ldh-6019.tistory.com/403
PUT /_ingest/pipeline/timestamp
{
"description": "Creates a timestamp when a document is initially indexed",
"processors": [
{
"set": {
"field": "_source.timestamp",
"value": "{{_ingest.timestamp}}"
}
}
]
}
bulk class 에 timestamp pipeline 추가
색인 실행
조았으.. timestamp
다시 aggregation 해보자 sum 을 해줄 number type 의 필드가 없어 다시 색인 ㅠㅠ
num 필드에 10000까지의 랜덤 스코어 색인
날짜별로 더 했더니
GET location-index/_search
{
"size": 0,
"aggs": {
"doo_date_histo": {
"date_histogram": {
"field": "timestamp",
"calendar_interval": "day"
},
"aggs": {
"doo_sum": {
"sum": { "field": "num" }
},
"the_deriv": {
"derivative": { "buckets_path": "doo_sum" }
}
}
}
}
}
결과
'ElasticStack8 > Elasticsearch' 카테고리의 다른 글
[es8] nori analyzer (0) | 2023.08.19 |
---|---|
[es8] HighLevelClient, LowLevelClient (0) | 2023.08.06 |
[es8] elasticsearch stable-esplugin (0) | 2023.05.21 |
[es8] Elasticsearch Plugin 8.6.2 (0) | 2023.05.20 |
[es8] similarity modules (0) | 2023.05.16 |