所有.我使用的python elasticsearch版本是
import elasticsearch print elasticsearch.__version__ (5, 0, 1)
映射是
request_body = { 'mappings':{ 'post': { 'properties': { 'title': { 'type': 'text', } } } } }
错误是:
{u'status':400,u'error':{u'caused_by':{u'reason':你在字段[title]上声明的类型[text]的处理程序',u'type':u'mapper_parsing_exception '},u'root_cause':[{u'reason':你在字段[title]'上声明的类型[text]的处理程序',u'type':u'mapper_parsing_exception'}],你''':u 'mapper_parsing_exception',u'reason':u'无法解析映射[post]:没有在字段[title]'}上声明的类型[text]的处理程序
为什么es 5.0无法识别"文本"类型?我的设置有什么问题?非常感谢!