gpt4 book ai didi

elasticsearch - 日期映射在Kibana和ES中不起作用

转载 作者:行者123 更新时间:2023-12-03 01:36:17 39 4
gpt4 key购买 nike

我正在尝试在Elasticsearch中创建索引(通过Kibana的开发人员控制台)。索引如下所示:

PUT _template/example_index
{
"index_patterns": ["example_index*"],
"settings": {
"number_of_shards": 5,
"number_of_replicas": 1
},
"mappings": {
"track": {
"properties": {
"hash": {
"type": "keyword"
},
"time": {
"type": "date"
}
}
}
}
}

之后,我将一些数据放入Elasticsearch,然后通过管理->索引模式->创建索引在Kibana中创建索引;它将“时间”显示为字符串字段。它根本找不到任何时间字段。

添加的文档中的时间如下所示:1537185147182

最佳答案

我也遇到了同样的问题,但使用“ignore_malformed”解决了

下面是映射查询:

PUT my_index
{
"settings": {
"index.mapping.ignore_malformed": true
},
"mappings": {
"my_type": {
"properties": {
"Size": {"type": "integer","ignore_malformed": false },
"Creation_Time": {"type": "date", "format": "dd MMM yyyy HH:mm:ss"}
}
}
}
}

希望这会有所帮助。

关于elasticsearch - 日期映射在Kibana和ES中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52367224/

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