这是我的映射:
...
'mappings' : {
'listing' : {
'properties' : {
'name' : {
'type' : 'string',
'boost' : 10,
'index' : 'analyzed',
'analyzer' : 'search_analyzer',
// 'norms' : {'enabled' : false}
},
...
当我取消注释norms
然后重新编制索引时,我在重建索引时没有收到任何错误,但所有查询都返回空(0 hits
)
任何帮助都将不胜感激。
答案 0 :(得分:0)
norms.enabled设置必须与同一索引中同名字段的设置相同。