Mongo 3.2 Is Available

Full announcement is here: https://www.mongodb.com/blog/post/announcing-the-general-availability-of-mongodb-3-2-and-bug-hunt-winners?jmp=twt

Excerpt Below


##New Storage Engines for New Use Cases
We’re introducing new storage engines that extend the capabilities of MongoDB, including an in-memory storage engine for the most demanding real-time apps (currently in beta) and an encrypted storage to secure data at rest.

##Document Validation
In MongoDB 3.2, you can now get the benefits of a flexible data model without sacrificing governance. With document validation, you can define rules on what’s being stored in your database.

##MongoDB Compass
MongoDB 3.2 introduces MongoDB Compass, a new tool that allows developers and DBAs to visualize and explore their MongoDB data without having to use the MongoDB query language. It’s a sophisticated and simple to use GUI.

##BI Connector
The new BI Connector in 3.2 enables analysts, data scientists, and business users to visualize MongoDB data with industry-standard SQL-based BI platforms such as Tableau, Qlikview, and more.

##And so much more
We’re only scratching the surface with the above. MongoDB 3.2 also introduces $lookup to join data across collections, enhancements to Cloud Manager and Ops Manager, partial indexes, and so much more. Learn more in our about MongoDB 3.2 page.

7 Likes

So Mongo is basically SQL now. That’s neat.

2 Likes

A lot of really interesting things in this release! (Release notes)

The things that caught my eye were:

  1. replica set protocol change / write concerns

  2. document validation: nice. reminds me of Meteor’s check

  3. partial indexes: like sparse but can be targeted to a specific query

  4. mongodump/mongorestore improvements: just makes them a little nicer to use

I would suspect that the replica set protocol bump means that we can’t use the new read/write concerns with Meteor’s oplog support until Meteor does an update. Can anyone confirm?

  • Edit: Encrypted storage at rest is appealing too but I think that’s enterprise-only…
3 Likes

A lot really helpful improvements!

Does In-Memory storage engine means something for faster oplog tailing, especially for high volume writes? Or doesn’t it apply, because oplog is a sync part of MongoDB?

Using in-memory for some collections (and capped too) can even substitute the need for Redis in some cases.

Some relational helper packages using $lookup for relational queries processing inside MongoDB would be very helpful, maybe Astronomy as an ODM makes good use of it too. @jagi
– Very nice and needed, but i prefer Meteor better handling documents inner levels sync, allowing proper MongoDB modeling.

  • http://siliconangle.com/blog/2015/11/03/mongodb-3-2-gets-an-in-memory-storage-engine/
    “Providing the ability to avoid the delay of moving data back and forth from disk before every operation will make MongoDB much more attractive for high-performance use cases like fraud detection that require nearly instantaneous response times. The addition is as encouraging for customers as it is worrying for competitors like Aerospike Inc. and Couchbase Inc., which have enjoyed free rein with their in-memory NoSQL databases in the last few years.”

@fabiodr If Meteor is going to be updated to support @lookup, then definitely I will also update Astronomy Relations module to make use of it. However, even if Meteor will move to Mongo 3.2 it does not mean that MiniMongo will implement all new features. And as we know MiniMongo still does not support many important features from Mongo 2.6. I’m just curious what steps will MDG take if it goes about support for other databases and how collections are gonna deal with many databases.

If it goes about validation, I think that it’s nice feature but definitely not something that is very important. Most applications will still validate on the client first.

4 Likes

@jagi @fabiodr I think $lookup is only available to the aggregation framework therefore it would not become part of our standard data/model design workflow.

As for the protocol change, I don’t think it will affect meteor oplog tailing, write concern has always been configurable, they are only changing the default configuration.

In memory also ends up on the disk and the oplog for replication, so no worries there either.

2 Likes

Makes sense, sure it’s gonna take a while until we get MongoDB 3.2 support, it needs the latest 2.1 driver too (which, by the way, has a much faster JS BSON parser), we are in 1.4 yet.

Even if Minimongo wouldn’t handle relations, publications can query related data much faster and send to a client without reactive needs.

I suspect we have a big overhead for parsing big collections from BSON to JSON in the current driver. The faster native C++ BSON parser is disabled by default for preventing environment not so easy handled errors. Someone can confirm that?

2 Likes

Meteor supports mongo 3.0, so are you sure it won’t work with 3.2?

Right, oplog has to go throught disk before :confused:
For fast servers sync, Redis will still be the easier solution.

Maybe in Meteor 2, with a new data model, we can take advantage of something better here.

1 Like

Meteor’s first ever scaling option - by @arunoda - was actually redis-based, but then he switched over to oplog without any performance implications. So I’m guessing - even fairly certain - horizontal scaling won’t benefit much from switching to redis.

1 Like

Humm, i know Meteor uses little customized driver version.

But based on this table, i believe that, for now, only the latest driver will work for 3.2
https://docs.mongodb.org/ecosystem/drivers/driver-compatibility-reference/#reference-compatibility-mongodb-node

Ah yes, @sashko would you care to comment? Does your previous comment from the other thread still hold?

Oh, I would be incorrect then. But the point stands that we wouldn’t need to upgrade the version of Mongo, just the version of the driver.

1 Like

I saw that Meteor Cluster older implementation, will be useful in some time.

Meteor Cluster handles the current subscription model with oplog transparently, i’m planning to bypass oplog and MergeBox for some critical and more intensive areas of the app using Redis only for messaging and sync between servers.

1 Like

it seens meteor mongo need some work:

1 Like

Yikes! The issue seems to be more than merely updating the driver.

Is the work to get Meteor on the latest Mongo drivers and further the move to Mongo 3+ now on hold due to the move to GraphQL?

Nope, it’s unrelated. The race condition is with the Meteor 1.3 release.

1 Like

Just so I understand, there’s a race condition in the Meteor 1.3 release that’s preventing progress on this?

No I meant “race condition” in the metaphorical sense. Meaning that the work is on hold because we are working on the release, not because of the new data project.

2 Likes