我想用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 쿼리에 따라 데이터가 이미 존재하는 경우 삽입이 수행되지 않고 반환된 결과에 데이터가 저장됩니다.
으아악더 나은 해결책이 있다면 공유해 주세요.