gpt4 book ai didi

codeigniter - 在 elasticsearch 中将字段类型从 'date' 更新为 'string'

转载 作者:行者123 更新时间:2023-11-29 02:53:07 25 4
gpt4 key购买 nike

我是 Elasticsearch 的新手。我创建了一个包含几个子类型的索引。

{
"rkb_search_v3": {
"mappings": {
"event": {
"properties": {
"description": {
"type": "string"
}
"start_date": {
"type": "date",
"format": "dateOptionalTime"
},
"title": {
"type": "string"
}
}
}
}
}
}

我想将 start_date 类型更新为字符串,因为我无法搜索它,它给出错误 [error] => SearchPhaseExecutionException[Failed to execute phase [query], all分片失败; shardFailures {[4VaJ1zHkSsOaYid7rz6Ciw][rkb_search_v3][0]: SearchParseException[[rkb_search_v3][0]: from[-1],size[100]

我正在尝试通过以下方法使用 postman 更新它

PUT localhost:9200/rkb_search_v3/_mapping/event

{
"properties": {
"start_date": {
"type": "string"
}
}
}
}

但它没有更新。请帮忙。

P.S.: 事件类型中有数据索引。

最佳答案

您不能将字段从字符串更改为日期,因为它已经有数据,您需要重新索引所有数据。使用 ES 插件是实现这一目标的好方法。

http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/reindex.html

关于codeigniter - 在 elasticsearch 中将字段类型从 'date' 更新为 'string',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28856052/

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