0

我正在尝试使用 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 });

我不断收到此特定错误,但无法解决。如果你们能帮助我,我将不胜感激。

谢谢!

为呼叫中心创建映射时出错 [mapper_parsing_exception] 没有在字段 [子菜单] 上声明的类型 [混合] 的处理程序

4

1 回答 1

1

我想问题是那一行:

 type: [ CallCenterSubmenu.schema ]

在错误消息中它说:

No handler for type [mixed] declared on field [submenu]

因此,您正在尝试将submenu字段类型指定为fixed(或弹性搜索推断它,因为我不确定)并且我知道没有类型为mixed. 所以 ES 触发了这个异常。您必须指定有效类型:https ://www.elastic.co/guide/en/elasticsearch/reference/master/mapping-types.html

于 2016-08-02T22:56:43.357 回答