gpt4 book ai didi

elasticsearch - 在Elasticsearch映射中无意添加了“query”属性

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

我最近将我们的ElasticSearch服务器从0.9版本更新到1.4,并且当我为新ES导入映射时,我看到这已添加到映射中:

"query": {
"properties": {
"match_all": {
"type": "object"
}
}
},

该代码段不在我导入的映射中,但在我查询 curl -X GET localhost:9200/my_index/_mapping?pretty时始终出现。

还有其他人看到吗?

最佳答案

看起来您不小心创建了索引,而不是查询了它。 IE,您发布到:

POST http://localhost:9200/myindex -d '"query": {
"properties": {
"match_all": {
"type": "object"
}
}
}'

当您可能需要时,它将使用该映射创建索引:
POST http://localhost:9200/myindex/_search -d '"query": {
"properties": {
"match_all": {
"type": "object"
}
}
}'

只会搜索。

关于elasticsearch - 在Elasticsearch映射中无意添加了“query”属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28906425/

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