gpt4 book ai didi

elasticsearch - 在elasticsearch中,如何查询日期字段为2020年1月1日太平洋时间的任何时间的所有文档

转载 作者:行者123 更新时间:2023-12-03 02:21:46 26 4
gpt4 key购买 nike

在elasticsearch中,如何查询日期字段为2020年1月1日太平洋时区的任何文档。我只是不知道如何指定太平洋时区

最佳答案

{
"version": true,
"size": 500,
"sort": [
{
"inserted_date": {
"order": "desc",
"unmapped_type": "boolean"
}
}
],
"aggs": {
"2": {
"date_histogram": {
"field": "inserted_date",
"fixed_interval": "30m",
"time_zone": "America/Los_Angeles",
"min_doc_count": 1
}
}
},
"query": {
"bool": {
"must": [],
"filter": [
{
"match_all": {}
},
{
"range": {
"inserted_date": {
"gte": "2019-12-31T18:30:00.000Z",
"lte": "2020-01-01T18:29:59.000Z",
"format": "strict_date_optional_time"
}
}
}
],
"should": [],
"must_not": []
}
}
}

这可能对您有帮助。

关于elasticsearch - 在elasticsearch中,如何查询日期字段为2020年1月1日太平洋时间的任何时间的所有文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62200200/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com