gpt4 book ai didi

elasticsearch - Elasticsearch以字符串形式返回存储的字段

转载 作者:行者123 更新时间:2023-12-02 22:37:26 25 4
gpt4 key购买 nike

我在ES 5.4中有一个名为mydate的字段,具有以下映射:

{
"type": "date",
"store" : true,
"format" : "epoch_millis"
}

现在,使用以下查询:
POST foo/bar/_search
{
"query":{ "match_all": {} },
"stored_fields": [ "mydate" ]
}

ES返回:
{
"took": 7,
"timed_out": false,
"_shards": {...},
"hits": {
"total": 1,
"max_score": 1,
"hits": [
{
"_index": "foo",
"_type": "bar",
"_id": "1162256",
"_score": 1,
"fields": {
"mydate": [
"1504540873381"
]
}
}
]
}
}

我的问题是为什么字段的值以字符串形式返回,而不是很长。当我使用 _source进行查询时,确实是一个长值。

最佳答案

并不是真正的答案,但至少可以解释为什么会发生:https://github.com/elastic/elasticsearch/issues/26504

关于elasticsearch - Elasticsearch以字符串形式返回存储的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46048538/

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