일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- token filter test
- zip 파일 암호화
- aggregation
- high level client
- springboot
- licence delete curl
- MySQL
- License
- TensorFlow
- analyzer test
- API
- 파이썬
- license delete
- query
- Test
- plugin
- 차트
- Kafka
- Mac
- Elasticsearch
- zip 암호화
- aggs
- Java
- 900gle
- sort
- ELASTIC
- flask
- docker
- matplotlib
- Python
- Today
- Total
목록ELASTIC (3)
개발잡부
elasticsearch random sort 를 구현해보자 여러가지 방법이 있지만 잴 만만한 방법으로 개발환경 elasticsearch 7.9.2 sample code GET exp-item/_search/ { "_source": [ "itemNm", "itemNo", "itemStoreInfo.eventInfo.rmsEventKind" ], "size": 12, "query": { "bool": { "must_not": [ { "term": { "itemNo": { "value": "055964330" } } } ], "filter": [ { "terms": { "itemStoreInfo.eventInfo.rmsEventKind": [ "BASIC", "PICK", "TOGETHER", "GIFT" ..
IP 와 location 정보를 색인하는데 .. 의미는 없지만 timestamp 를 찍어 보고 싶었다. _timestamp Elasticsearch 초기 _timestamp에는 인덱스에 매핑 필드를 사용할 수 있었습니다. 이 기능은 버전 2.0부터 더 이상 사용되지 않지만, 그렇다고 해서 더 이상 타임스탬프가 있는 문서를 인덱싱할 수 없다는 의미는 아닙니다. Elasticsearch 타임스탬프는 여전히 가능하지만 생성하는 데 필요한 프로세스에는 약간의 노하우가 필요합니다. 이 기사에서는 Elasticsearch 타임스탬프를 생성하는 데 도움이 되는 단계별 지침을 제공합니다. 자 이렇다고 한다. _timestamp 필드는 더 이상 사용되지 않습니다. 버전 2.0부터 더 이상 사용 되지 않으므로 이 매핑 필..
전체 쿼리 더보기 GET hyper-item,ds-item/_search { "from": 0, "size": 0, "timeout": "60s", "query": { "bool": { "filter": [ { "range": { "saleStartDt": { "from": null, "to": "now/m", "include_lower": true, "include_upper": true, "boost": 1 } } }, { "range": { "saleEndDt": { "from": "now/m", "to": null, "include_lower": true, "include_upper": true, "boost": 1 } } }, { "term": { "docDispYn": { "value": "Y..