es自动创建索引类型问题
AI-摘要
KunKunYu GPT
AI初始化中...
介绍自己
生成本文简介
推荐相关文章
前往主页
前往tianli博客
es自动创建索引类型问题
[TOC]
报错:[DEBUG][action.admin.indices.mapping.put] [es01] failed to put mappings on indices [[zds-guarantee-log]], type [docs]
MapperParsingException[No type specified for field [application]]
查看es 发现索引名称已经创建成功,但却没有具体的字段值。由此怀疑是否字段类型是否有问题
1 排查思路
手动创建索引类型为auto并插入相应值
curl -XPOST "http://xxxx:9200/test"
curl -XGET "http://xxxx:9200/test/_mapping?pretty"
curl -XPOST "http://xxxx:9200/test/docs/_mapping?pretty" -d '
{
"docs": {
"properties": {
"id": {
"type": "long"
},
"application": {
"type": "atuo"
},
"serNo": {
"type": "string"
},
"category": {
"type": "string"
},
"date": {
"type": "long"
},
"msg": {
"analyzer":"ik_max_word",
"type": "string"
}
}
}
}
同样报错
2 解决方法
修改字段类型为string
curl -XPOST "http://xxxx:9200/test1"
curl -XGET "http://xxxx:9200/test1/_mapping?pretty"
curl -XPOST "http://xxxx:9200/test1/docs/_mapping?pretty" -d '
{
"docs": {
"properties": {
"id": {
"type": "long"
},
"application": {
"type": "string
},
"serNo": {
"type": "string"
},
"category": {
"type": "string"
},
"date": {
"type": "long"
},
"msg": {
"analyzer":"ik_max_word",
"type": "string"
}
}
}
}
3查看es支持自动创建类型
- 感谢你赐予我前进的力量
赞赏者名单
因为你们的支持让我意识到写文章的价值🙏
作者编辑不易,如有转载请注明出处。完整转载来自https://wangairui.com 网站名称:猫扑linux
评论
匿名评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果