cbarlock
cbarlock

Reputation: 105

MongoDB Java driver questions

We are looking to upgrade our MongoDB from version 3.0.6 (with Java driver 3.0.4) to version 3.2.12. (I know version 3.4.x is available, but I understand you can't go directly from 3.0.x to 3.4.x if you need to migrate data.) A couple questions about the Java driver:

Upvotes: 0

Views: 275

Answers (1)

Adam Harrison
Adam Harrison

Reputation: 3421

Most of these questions are answered in the compatibility documentation for this driver.

Is Java driver 3.2.2 the right version that matches server 3.2.12?

Looks like yes, but you should make sure 3.2.2 is the most up to minor version for the 3.2 release (https://github.com/mongodb/mongo-java-driver/releases).

Is it supported for a newer Java driver version to communicate with an older server version?

Yes, the 3.2 version of the driver can work with 3.0.X version of MongoDB.

Are there any issues with using Java driver 3.0.4 to talk to server 3.2.12?

This table doesn't reference a 3.0 version of the MongoDB Java driver. Did you mean a different driver version?

Upvotes: 0

Related Questions