📜 ⬆️ ⬇️

Mongodb 3.0 Production Release released

image

This release marks the beginning of a new phase, which laid the foundation for making the database powerful, flexible and easy to manage.
Initially, the release version was 2.8, but due to the importance of the changes, it was decided to rename it to 3.0

Major innovations and improvements:
')


More information can be found here:
Official Announcement 3.0
Announcement of the main innovations in Mongodb 3.0
Webinar "What's new in Mongodb 3.0"
pdf What's new in Mongodb 3.0


The main improvements come from WiredTiger, but in Mongo 3.0, by default, the main storage is still old (MMAPv1).
To use WT, you need to migrate (if there is data) and run mongod with a special parameter:
mongod --storageEngine wiredTiger --dbpath <newWiredTigerDBPath> 

more

The old format (MMAPv1) and new (WT) are not compatible, so manual migration using mongodump, mongoexport or using replica is necessary.

Source: https://habr.com/ru/post/252129/


All Articles