2024-01-20-Elasticsearch-客製化搜尋條件

Painless Script

https://www.elastic.co/guide/en/elasticsearch/painless/current/painless-walkthrough.html

只選擇夜間的資料

https://stackoverflow.com/a/35596907

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"query": {
"bool": {
"filter": [
{
"range": {
"OccurrenceTime": {
"gte": "2023-12-01",
"lt": "2024-01-20"
}
}
},
{
"script": {
"script": "doc.OccurrenceTime.value.hour >= 10 && doc.OccurrenceTime.value.hour <= 21"
}
}
]
}
}
}

2024-01-20-Elasticsearch-客製化搜尋條件

https://jenhaoyang.github.io/uncategorized/c19f17ada1ab/

Author

Steven

Posted on

2024-01-20

Updated on

2025-01-14

Licensed under

Comments