以前のバージョンのMongoDB Javaドライバーでは、クエリを実行し、結果に対して順序付けられていない一括アップサートを実行するだけでした。
BulkWriteOperation bulk = dbCollection.initializeUnorderedBulkOperation();
bulk.find(searchQuery).upsert().update(new BasicDBObject("$set", getDbObjectModel()));
しかし、バージョン3では、Bson DocumentサポートとMongoCollection.bulkWrite()メソッドの導入により、これをどのように行うことができますか?
私はこれを試しました:
List<WriteModel<Document>> documentList = new ArrayList<>();
collection.bulkWrite(documentList, new BulkWriteOptions().ordered(false));
しかし、アップサート機能が必要です。
ありがとう。
引き続きすべての機能を使用できます。BulkWritesの構文が異なるだけです。
MongoCollection<Document> collection = db.getCollection("sample");
List<WriteModel<Document>> updates = Arrays.<WriteModel<Document>>asList(
new UpdateOneModel<Document>(
new Document(), // find part
new Document("$set",1), // update part
new UpdateOptions().upsert(true) // options like upsert
)
);
BulkWriteResult bulkWriteResult = collection.bulkWrite(updates);
したがって、 UpdateOneModel
(または必要に応じて多くの場合)を使用し、コンストラクターの3番目の引数として UpdateOptions
を設定します。
慣れるまで少し時間がかかりますが、基本的には他の場所と同じ構文で「リスト」を作成するだけです。それが変更の主な理由だと思います。
最新のAPIを使用した例を次に示します。
for (Long entityId : entityIDs) {
//Finder doc
Document filterDocument = new Document();
filterDocument.append("_id", entityId);
//Update doc
Document updateDocument = new Document();
Document setDocument = new Document();
setDocument.append("name", "xyz");
setDocument.append("role", "abc");
updateDocument.append("$set", setDocument);
//Update option
UpdateOptions updateOptions = new UpdateOptions();
updateOptions.upsert(true); //if true, will create a new doc in case of unmatched find
updateOptions.bypassDocumentValidation(true); //set true/false
//Prepare list of Updates
updateDocuments.add(
new UpdateOneModel<Document>(
filterDocument,
updateDocument,
updateOptions));
}
//Bulk write options
BulkWriteOptions bulkWriteOptions = new BulkWriteOptions();
bulkWriteOptions.ordered(false);
bulkWriteOptions.bypassDocumentValidation(true);
MongoCollection<Document> mongoCollection = mongoDB.getCollection("myCollection");
BulkWriteResult bulkWriteResult = null;
try {
//Perform bulk update
bulkWriteResult = mongoCollection.bulkWrite(updateDocuments,
bulkWriteOptions);
} catch (BulkWriteException e) {
//Handle bulkwrite exception
List<BulkWriteError> bulkWriteErrors = e.getWriteErrors();
for (BulkWriteError bulkWriteError : bulkWriteErrors) {
int failedIndex = bulkWriteError.getIndex();
Long failedEntityId = entityIDs.get(failedIndex);
System.out.println("Failed record: " + failedEntityId);
//handle rollback
}
}
int rowsUpdated = bulkWriteResult.getModifiedCount();
詳細: http://ashutosh-srivastav-mongodb.blogspot.in/2017/09/mongodb-bulkwrite-Java-api.html
何かfindAndModifyElseCreate();が必要な場合つまり、ドキュメントが存在する場合は更新し、それ以外の場合は作成してデータを挿入し、これに従ってください。
BasicDBObject insertInCaseDocumentNotFound = new BasicDBObject();
insertInCaseDocumentNotFound.put("field1", "value1");
insertInCaseDocumentNotFound.put("date", new Date());
MongoCollection<BasicDBObject> table = db.getCollection("collectionName",BasicDBObject.class);
BasicDBObject updateObject = new BasicDBObject();
updateObject.append("$setOnInsert", new BasicDBObject());
updateObject.append("$set", new BasicDBObject("date",new Date());
List<WriteModel<BasicDBObject>> updates = Arrays.<WriteModel<BasicDBObject>> asList(
new UpdateOneModel<BasicDBObject>(new BasicDBObject("search_name", alert.getString("search_name")), // query for which we need to apply
updateObject, // update the document in case it is found
new UpdateOptions().upsert(true) // upsert to insert new data in case document is not found
));
table.bulkWrite(updates);