일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- high level client
- license delete
- Elasticsearch
- TensorFlow
- 차트
- analyzer test
- flask
- Python
- sort
- ELASTIC
- zip 파일 암호화
- token filter test
- zip 암호화
- Test
- API
- docker
- License
- Java
- 파이썬
- plugin
- aggs
- licence delete curl
- springboot
- 900gle
- Mac
- Kafka
- query
- matplotlib
- aggregation
- MySQL
- Today
- Total
개발잡부
[es] filter script 본문
GET hyper-item/_search
{
"_source": ["itemNm", "itemNo"],
"from": 0,
"size": 20,
"timeout": "60s",
"query": {
"bool": {
"filter": [
{
"script": {
"script": {
"source": "(doc['rsvDocDispYn'].value == 'Y' && doc['itemStoreInfo.rsvSoldOutYn'].value == 'N' ) || (doc['docDispYn'].value == 'Y' && doc['itemStoreInfo.soldOutYn'].value == 'N')",
"lang": "painless"
}
}
},
{
"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
}
}
},
{
"terms": {
"itemStoreInfo.storeId": [
"163"
],
"boost": 1
}
},
{
"term": {
"storeType": {
"value": "HYPER",
"boost": 1
}
}
},
{
"term": {
"category.scateCd": {
"value": "300026",
"boost": 1
}
}
},
{
"bool": {
"must_not": [
{
"term": {
"itemNo": {
"value": "101729255",
"boost": 1
}
}
}
],
"adjust_pure_negative": true,
"boost": 1
}
}
],
"adjust_pure_negative": true,
"boost": 1
}
},
"sort": [
{
"adultSort": {
"order": "asc"
}
},
{
"itemStoreInfo.weight": {
"order": "desc"
}
},
{
"itemStoreInfo.buyerCnt": {
"order": "desc"
}
},
{
"itemNo": {
"order": "desc"
}
}
],
"track_total_hits": -1
}
'ElasticStack > Elasticsearch' 카테고리의 다른 글
[es] Edge NGram Test (0) | 2022.12.11 |
---|---|
[es] NGram Test (0) | 2022.12.11 |
[es]성능체크 (0) | 2022.11.24 |
[es] health check (0) | 2022.11.16 |
[es] Terms Query (0) | 2022.09.27 |