我正在尝试使用NodeJs的mongoosastic插件将现有集合索引到ElasticSearch。这是我的架构:
const callCenterSchema = new mongoose.Schema({
_owner : { type: mongoose.Schema.Types.ObjectId, ref: 'User', es_type: 'object' },
ivrs: [{
name: {
type: String,
es_type: 'string'
},
ivrType: {
type: String,
default: 'mobile',
enum: ['mobile', 'website'],
es_type: 'string'
},
submenu: {
type: [ CallCenterSubmenu.schema ],
es_type: 'nested',
es_include_in_parent: true
}
}]
});
callCenterSchema.plugin(mongoosastic, {
esClient: require('tusla/lib/db/elastic').elastic,
populate: [
{ path: '_owner' }
]
});
let CallCenter = mongoose.model('CallCenter', callCenterSchema);
CallCenter.synchronize()
CallCenter.createMapping(function(err, mapping) {
if (err) {
console.error('Error creating mapping for CallCenters', err.message);
}
});
module.exports = CallCenter;
我的子菜单架构是这样的:
const callcenterSubmenuSchema = new mongoose.Schema({
name: String,
key: String,
waitTime: {
type: Number
},
waitSuffix: String,
numberOrLink: String,
auth: {
canBeSkipped: String,
fields: {
type: Array,
es_type: 'object'
},
verification: String,
regExp: String
},
submenu: [this]
}, { _id: false });
我一直收到这个特定错误,但无法解决。如果你们能帮助我,我感激不尽。
谢谢!
为CallCenters创建映射时出错[mapper_parsing_exception]字段[submenu]上没有声明[mixed]类型的处理程序
答案 0 :(得分:1)
我猜问题就是这一行:
headerPanel('Transportation')
在错误消息中说:
type: [ CallCenterSubmenu.schema ]
因此,您尝试将No handler for type [mixed] declared on field [submenu]
字段的类型指定为submenu
(或者弹性搜索将其推断为我不确定),因为我知道没有类型为fixed
。因此,ES引发了这种异常。您必须指定有效类型:https://www.elastic.co/guide/en/elasticsearch/reference/master/mapping-types.html