作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用Elasticsearch
6.8。而且我想在索引上保存一些meta
数据。该索引已经存在。我遵循了这个doc https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html#add-field-mapping
curl "http://localhost:9200/idx_1/_mapping"
{
"idx_1": {
"mappings": {
"1": {
"properties": {
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
}
}
}
_meta
数据,我需要首先创建映射类型。
_meta
创建
version
映射类型。
curl -X PUT -H 'Content-Type: application/json' "http://localhost:9200/idx_1/_mapping" -d '
{"_meta": { "version": {"type": "text"}}}'
{
"error": {
"root_cause": [
{
"type": "action_request_validation_exception",
"reason": "Validation Failed: 1: mapping type is missing;"
}
],
"type": "action_request_validation_exception",
"reason": "Validation Failed: 1: mapping type is missing;"
},
"status": 400
}
type
的版本指定为
text
。为什么说
missing type
?
最佳答案
原来,我看错了文档版本。根据Elasticsearch6的文档https://www.elastic.co/guide/en/elasticsearch/reference/6.3/mapping-meta-field.html,正确的请求是:
curl -X PUT "http://localhost:9200/idx1/_mapping/_doc" -H 'Content-Type: application/json' -d '{"_meta": {"version": "1235kljsdlkf"}}'
关于elasticsearch - 如何在 `Elasticsearch`上创建元数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58479026/
我是一名优秀的程序员,十分优秀!