没有在字段[title]上声明的[text]类型的处理程序(python elasticsearch

前端之家收集整理的这篇文章主要介绍了没有在字段[title]上声明的[text]类型的处理程序(python elasticsearch前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

所有.
我使用的python elasticsearch版本是

  1. import elasticsearch
  2. print elasticsearch.__version__
  3. (5,1)

映射是

  1. request_body = {
  2. 'mappings':{
  3. 'post': {
  4. 'properties': {
  5. 'title': {
  6. 'type': 'text',}
  7. }
  8. }
  9. }
  10. }

错误是:

{u’status’: 400,u’error’: {u’caused_by’: {u’reason’: u’No handler for
type [text] declared on field [title]’,u’type’:
u’mapper_parsing_exception’},u’root_cause’: [{u’reason’: u’No handler
for type [text] declared on field [title]’,u’type’:
u’mapper_parsing_exception’}],u’type’: u’mapper_parsing_exception’,
u’reason’: u’Failed to parse mapping [post]: No handler for type
[text] declared on field [title]’}}

为什么es 5.0无法识别“文本”类型?我的设置有什么问题?
非常感谢!

最佳答案
您的映射中存在一些问题.用双引号替换所有单引号,并在最后一行(字段类型定义)后删除.

  1. {
  2. "mappings":{
  3. "post":{
  4. "properties":{
  5. "title":{
  6. "type":"text"
  7. }
  8. }
  9. }
  10. }
  11. }

猜你在找的Python相关文章