MongoException:名称为索引:代码已存在,但选项不同

MongoException: Index with name: code already exists with different options

我有一个 mongodb collection term 具有以下结构

{
    "_id" : "00002c34-a4ca-42ee-b242-e9bab8e3a01f",
    "terminologyClass" : "USER",
    "code" : "X67",
    "terminology" : "some term related notes",
    "notes" : "some notes"
}

和一个 java class 表示词条 collection 为 Term.java

@Document
public class Term{  

    @Id
    protected String termId;

    @Indexed
    protected String terminologyClass;

    @Indexed(unique=true)
    protected String code;

    @Indexed
    protected String terminology;

    protected String notes;

    //getters & setters
}

我在 term collection 中有很多文档。现在我添加了一个新字段到 Term.java as

@Indexed
protected String status;

将字段 status 添加到 Term.java 后,同时将新术语插入 term collection 我得到一个例外:

com.mongodb.MongoException: Index with name: code already exists with different options

我正在使用 MongoDB 版本:2.6.5 和 spring-data-mongodb 版本:1.3.2

你试过放下你的 collection 再试一次吗?将新的 java 映射应用到现有 mongodb collection

时通常会发生很多冲突

该集合上已有同名但定义不同的索引。我的猜测是您当前的代码索引是非唯一的

尝试: db.Term.getIndexes()

如果情况确实如此(您在代码字段上有一个非唯一索引),请发出: db.Term.dropIndex("code_1") (替换为代码字段索引名称)。

下次启动应用程序时,它应该可以正常工作。

或者,从 @Indexed 注释中删除唯一属性(如果您不希望它是唯一的)。

尝试创建多个复合 text 索引也可能导致此错误。

每个集合只允许一个 text 文本搜索索引 per the docs

在多租户数据库中,我们希望通过使用复合索引在每个客户的数据中强制执行唯一性。

db.users.createIndex( { customer: "text", email: "text"}, { unique: true } );
db.users.createIndex( { customer: "text", cell: "text"}, { unique: true } );

这样做导致操作错误。

但是,将它们更改为常规索引解决了这个问题。

db.users.createIndex( { customer: 1, email: 1}, { unique: true } );
db.users.createIndex( { customer: 1, cell: 1}, { unique: true } );