According to the javaDoc, getN()
method of WriteResult
class in MongoDB-java returns the number of documents updated in the opertion.
But it always
I was under the impression that this was the normal MongoDB behaviour, and has nothing to do with the Java driver.
The only thing I can find in the documentation is this:
getLastError.n reports the number of documents updated or removed, if the preceding operation was an update or remove operation.
An insert
being neither an update
nor a remove
, n
doesn't seem to be specified and 0 is as good a default value as any. You can check it easily enough in the mongo shell:
> db.test.insert({_id: 'test'})
> db.getLastErrorObj()
{ "n" : 0, "connectionId" : 7, "err" : null, "ok" : 1 }
Unless I'm mistaken, it's not really an issue: ask yourself under which circumstances the insert would fail (other than, say, a connection failure). The only one I can think of is a unicity constraint violation, which would result in an exception. So almost by definition, the fact that you receive a WriteResult
instance at all means the operation was successful and a document was inserted.
A couple of notes:
WriteConcern
being high enough that errors are reported. If you're using WriteConcern.NONE
, for example, no exception will ever be raised.save
instead of insert
. Not very clean, but it behaves the way you seem to expect.Note that regardless of what the MongoDB documentation states, the WriteResult.getN() method always returns 0 for insert using the Java driver, regardless of the number of objects inserted. The source code for setting the "n" field in the 2.12.3 of the Java driver:
if (type == INSERT) {
commandResult.put("n", 0);
} else if (type == REMOVE) {
commandResult.put("n", bulkWriteResult.getRemovedCount());
} else if (type == UPDATE || type == REPLACE) {
commandResult.put("n", bulkWriteResult.getMatchedCount() + bulkWriteResult.getUpserts().size());
if (bulkWriteResult.getMatchedCount() > 0) {
commandResult.put("updatedExisting", true);
} else {
commandResult.put("updatedExisting", false);
}
if (!bulkWriteResult.getUpserts().isEmpty()) {
commandResult.put("upserted", bulkWriteResult.getUpserts().get(0).getId());
}
}
But errors are correctly reported via Exceptions. For example, a MongoException will be thrown when inserting a document that violates a unique index, if WriteConcern specified is at least the ACKNOWLEDGED
You may also want to check http://docs.mongodb.org/manual/core/write-concern/
The dafault behaviour is not to use the "safe" write concern