Quantcast
Channel: MongoDB | Blog
Viewing all articles
Browse latest Browse all 2423

Announcing Ruby Driver 2.0, a Rewrite

$
0
0

How rubyists are using MongoDB today

Given that the majority of the Ruby community is using Ruby on Rails, the interface for most Ruby users to MongoDB is the mongoid gem, an Object-Document-Mapper that allows Rails to work with the database. This gem is independent of the mongo and bson gems. The mongo gem is the official driver to MongoDB and the bson gem is the serializer/deserializer between BSON documents and Ruby hashes.

As I wrote last year, rubyists are at a great advantage in using MongoDB because they already make frequent use of document objects (i.e. Ruby hashes) and build Object-oriented applications. On the other hand, rubyists have been at a disadvantage because their main entry point to the database, Mongoid, is not an official product of MongoDB Inc. and support for it is not guaranteed by the company.

That is all going to change with the release of the new Ruby driver, version 2.0.

The disjoint Ruby community

Durran Jordan authored Mongoid 6 years ago to be Rails' Active Record replacement for MongoDB. Mongoid aimed to provide a similar API to Active Record, and it’s largely due to this gem that MongoDB had adoption in the Ruby (i.e. Rails) community. Mongoid then evolved through several releases and eventually came to use its own driver, Moped. Mongoid versions 3.0 and higher use this separate driver.

The MongoDB Ruby community then split into a three different cohorts, using the following different gem combinations:

  1. Ruby/Rails users:
  • mongoid version >= 3.0
  • moped
  • bson version >= 2.0
  • Ruby/Rails users:
    • mongoid version < 3.0
    • mongo 1.x series
    • bson 1.x series
  • Ruby users:
    • mongo 1.x series
    • bson 1.x series

    Over the course of time, the MongoDB server became increasingly rich in functionality and the list of driver requirements grew. Moped subsequently fell behind in feature completion and the Ruby community became stuck; Rails and Ruby users had to choose between using the most recent version of Mongoid and a feature incomplete driver (moped), or an older version of Mongoid and the most recent official MongoDB Inc. driver (mongo).

    Centralizing the community

    Durran and the Ruby team decided that the best solution would be to officially work together on building a new driver and getting Mongoid version >= 5.0 to use it. That way, the Ruby team, now benefiting from Durran’s expertise, could support the majority of rubyists using MongoDB and dissipate much of the confusion caused by saturating the community with a plethora of gems having overlapping purposes.

    The team built a new bson gem last year and Mongoid is already using it. bson gem version >= 2.0 is the rewrite. The new driver also uses this new bson gem.

    This table illustrates just how much more feature-rich the new Ruby driver is, compared to Moped.

    FeatureMongoMoped
    CR Authxx
    GSSAPI Authx
    SCRAM-SHA-1 Authx
    X509 Authx
    Plain/LDAP Authx
    Basic CRUDxx
    Query Framework Fluent APIxx
    Write Commandsxx
    Bulk APIx
    Connection Poolingxx
    Asynchronous Server Monitoringx
    Aggregation Framework Fluent APIx
    Map/Reduce Fluent APIx
    Event Framework for External Hooksx
    Logging Instrumentationxx
    GridFS APIx
    Index Management APIxx
    BSON 2.xxx
    SSL Connectionsxx
    Unix Socket Connectionsx
    Tag sets in read preferencesx
    Proper nearest read preferencex

    The new Ruby driver

    The new Ruby driver is not a refactor, it is a complete rewrite. The design is cleaner and the API is more intuitive than that of the old driver. The Ruby team is confident that the completed product is strong, as the team members collectively have experience maintaining the current driver for many years (mongo), building a community driver (moped), and creating an ODM (mongoid). The new driver is more approachable and easier to maintain, and that’s good for everyone in the Ruby community.

    Guide to navigating our GitHub repository and Rubygems

    The Ruby driver GitHub repository has two branches. 1.x-stable is the old Ruby driver (the mongo gem 1.x series). The master branch is the rewrite which corresponds to mongo gem version >= 2.0.

    The 1.x series bson gem code is actually inside the 1.x series ruby driver repository and the two are always released in parallel.

    The 2.0 series bson gem can be found in a separate repository. The team realized that this made more sense, as the driver depends on the bson gem and there is no gain from coupling the codebases.

    Notable Moped improvements in Ruby driver 2.0

    One of the biggest complaints about Moped is that it doesn’t have support for failover. Among other specifications, the new driver implements the specs for Server Discovery and Monitoring (SDAM) and Server Selection. Asynchronous monitoring described in the SDAM spec alleviates the pain that existing Moped users experienced when 1 or more servers are not reachable: scans to update the driver’s view of the cluster state block regular database operations.

    Moped also falls short on a lot of essential functionality for supporting server version 3.0. For example, it simply doesn’t support authentication with MongoDB 3.0 or recent versions of the wire protocol (which includes commands such as listCollections, listIndexes, and the ability to do bulk writes). Integrating Mongoid with Ruby driver 2.0 will bring a lot of this functionality and forward-compatibility to the ODM.

    Why upgrade Mongoid? Why upgrade to the new driver?

    There are many reasons to upgrade to mongo gem version 2.0 and to mongoid gem version 5.0, when it’s released. First off, these versions support MongoDB 3.0. Secondly, the driver rewrite incorporates a lot of improvements and design changes we’ve learned are critical from collectively having maintained a Ruby interface to MongoDB for years. Following these releases, we will turn our focus to maintaining the rewrite and Mongoid 5.0 and will put the 1.x series of the driver into maintenance mode. New features will not be added and development work will consist only of bug fixes and minimal features necessary for supporting the most recent version of the server. The same can be said of Moped; this community driver will go into maintenance mode and will only exist to support the Mongoid 3.x - 4.x series.

    Help us test it out!

    Calling all mongoid and mongo gem users! We need your help trying out the new driver either independently or under mongoid 5.0’s covers. The mongo gem 2.0 series is now available in RubyGems. To get it, simply do

    gem install mongo

    The mongoid gem version 5.0 will be available soon as a beta release in RubyGems and we’d welcome your help testing it as well.

    If you find any issues, please open a ticket in the JIRA Ruby driver project.


    Viewing all articles
    Browse latest Browse all 2423

    Trending Articles