我想用spring-data-mongodb的接口执行批量插入,每次插入100条数据。接口描述如下:
/**
* 参考:org.springframework.data.mongodb.core.MongoTemplate
* 参考:org.springframework.data.mongodb.core.MongoOperations
*
* Insert a list of objects into the specified collection in a single batch write to the database.
*
* @param batchToSave the list of objects to save.
* @param collectionName name of the collection to store the object in
*/
void insert(Collection<? extends Object> batchToSave, String collectionName);
然而这里存在一个问题:当有重复的唯一索引时,插入操作会“部分成功”——某些文档插入成功,某些插入失败。我想知道什么时候发生的插入失败,哪些失败了,哪些成功了。然而,上面的接口没有返回值。有谁碰到过这个问题吗?
同じ問題に遭遇しました、
spring-data-mongodb
版本是1.8.2.RELEASE
.一意のインデックス ID を持つデータを挿入する場合、戻り値や例外はなく、元のデータには影響しません。
私の解決策は、挿入前にクエリを実行することです。ID クエリに基づいてデータがすでに存在する場合、挿入は実行されず、データは返された結果に保存されます。
リーリーより良い解決策がある場合は、共有してください。