MongoDB

From Wikipedia, the free encyclopedia
MongoDB
Developer(s) MongoDB Inc.
Initial release 2009 (2009)
Stable release 2.4.9 / 10 January 2014 (2014-01-10)
Preview release 2.5.4 / 18 November 2013 (2013-11-18)
Development status Active
Written in C++
Operating system Cross-platform
Available in English
Type Document-oriented database
License GNU AGPL v3.0 (drivers: Apache license)
Website www.mongodb.org

MongoDB (from "humongous") is a cross-platform document-oriented database system. Classified as a NoSQL database, MongoDB eschews the traditional table-based relational database structure in favor of JSON-like documents with dynamic schemas (MongoDB calls the format BSON), making the integration of data in certain types of applications easier and faster. Released under a combination of the GNU Affero General Public License and the Apache License, MongoDB is free and open source software.

First developed by 10gen (now MongoDB Inc.) in October 2007 as a component of a planned platform as a service product, the company shifted to an open source development model in 2009, with 10gen offering commercial support and other services.[1] Since then, MongoDB has been adopted as backend software by a number of major websites and services, including Craigslist, eBay, Foursquare, SourceForge, and The New York Times, among others. MongoDB is the most popular NoSQL database system.[2]

History

Development of MongoDB began in 2007, when the company (then named 10gen) was building a platform as a service similar to Windows Azure or Google App Engine.[3] In 2009, MongoDB was open sourced as a stand-alone product[4] with an AGPL license.

From version 1.4 (March 2010), MongoDB has been considered production ready.[5]

The latest stable version, 2.4.9, was released on January 10, 2014.

Licensing and support

MongoDB is available for free under the GNU Affero General Public License.[4] The language drivers are available under an Apache License. In addition, MongoDB Inc. offers commercial licenses for MongoDB.[6]

Main features

The following is a brief summary of some of the main features:[7]

Ad hoc queries
MongoDB supports search by field, range queries, regular expression searches. Queries can return specific fields of documents and also include user-defined JavaScript functions.
Indexing
Any field in a MongoDB document can be indexed (indices in MongoDB are conceptually similar to those in RDBMSes). Secondary indices are also available.
Replication
MongoDB provides high availability and increased throughput with replica sets.[8] A replica set consists of two or more copies of the data. Each replica may act in the role of primary or secondary replica at any time. The primary replica performs all writes and reads by default. Secondary replicas maintain a copy of the data on the primary using built-in replication. When a primary replica fails, the replica set automatically conducts an election process to determine which secondary should become the primary. Secondaries can also perform read operations, but the data is eventually consistent by default.
Load balancing
MongoDB scales horizontally using sharding.[9] The user chooses a shard key, which determines how the data in a collection will be distributed. The data is split into ranges (based on the shard key) and distributed across multiple shards. (A shard is a master with one or more slaves.)
MongoDB can run over multiple servers, balancing the load and/or duplicating data to keep the system up and running in case of hardware failure. Automatic configuration is easy to deploy, and new machines can be added to a running database.
File storage
MongoDB can be used as a file system, taking advantage of load balancing and data replication features over multiple machines for storing files.
This function, called GridFS,[10] is included with MongoDB drivers and available with no difficulty for development languages (see "Language Support" for a list of supported languages). MongoDB exposes functions for file manipulation and content to developers. GridFS is used, for example, in plugins for NGINX[11] and lighttpd.[12]
In a multi-machine MongoDB system, files can be distributed and copied multiple times between machines transparently, thus effectively creating a load-balanced and fault-tolerant system.
Aggregation
MapReduce can be used for batch processing of data and aggregation operations. The aggregation framework enables users to obtain the kind of results for which the SQL GROUP BY clause is used.
Server-side JavaScript execution
JavaScript can be used in queries, aggregation functions (such as MapReduce), and sent directly to the database to be executed.
Capped collections
MongoDB supports fixed-size collections called capped collections. This type of collection maintains insertion order and, once the specified size has been reached, behaves like a circular queue.

Criticisms

MongoDB uses a readers-writer lock that allows concurrent read access to a database but exclusive write access to a single write operation.[13] Before version 2.2, this lock was implemented on a per-mongod basis. Since version 2.2, the lock is implemented at the database level.[14] One approach to increase concurrency is to use sharding.[15] In some situations, reads and writes will yield their locks. If MongoDB predicts a page is unlikely to be in memory, operations will yield their lock while the pages load. The use of lock yielding expanded greatly in 2.2.[16]

Another criticism related to the limitations of MongoDB when used on 32-bit systems.[17] In some cases, this was due to inherent memory limitations.[18] MongoDB recommends 64-bit systems and that users provide sufficient RAM for their working set.[19] Some users encounter issues when their working set exceeds available RAM and the system encounters page faults. MongoHQ, a provider of managed MongoDB infrastructure, recommends a scaling checklist for large systems.[20]

Language support

MongoDB has official drivers for a variety of popular programming languages and development environments.[21] Web programming language Opa also has built-in support for MongoDB, which is tightly integrated in the language and offers a type-safety layer on top of MongoDB.[22] There are also a large number of unofficial or community-supported drivers for other programming languages and frameworks.[21]

Management and graphical front-ends

MongoDB tools

In a MongoDB installation the following commands are available:

mongo
MongoDB offers an interactive shell called mongo,[23] which lets developers view, insert, remove, and update data in their databases, as well as get replication information, set up sharding, shut down servers, execute JavaScript, and more.
Administrative information can also be accessed through a web interface,[24] a simple webpage that serves information about the current server status. By default, this interface is 1000 ports above the database port (28017).
mongostat
mongostat[25] is a command-line tool that displays a summary list of status statistics for a currently running MongoDB instance: how many inserts, updates, removes, queries, and commands were performed, as well as what percentage of the time the database was locked and how much memory it is using. This tool is similar to the UNIX/Linux vmstat utility.
mongotop
mongotop[26] is a command-line tool providing a method to track the amount of time a MongoDB instance spends reading and writing data. mongotop provides statistics on the per-collection level. By default, mongotop returns values every second. This tool is similar to the UNIX/Linux top utility.
mongosniff
mongosniff[27] is a command-line tool providing a low-level tracing/sniffing view into database activity by monitoring (or "sniffing") network traffic going to and from MongoDB. mongosniff requires the Libpcap network library and is only available for Unix-like systems. A cross-platform alternative is the open source Wireshark packet analyzer which has full support for the MongoDB wire protocol.
mongoimport, mongoexport
mongoimport[28] is a command-line utility to import content from a JSON, CSV, or TSV export created by mongoexport[29] or potentially other third-party data exports.
mongodump, mongorestore
mongodump[30] is a command-line utility for creating a binary export of the contents of a Mongo database; mongorestore[31] can be used to reload a database dump.

Production deployments

Some of the prominent users of MongoDB include:[32]

  • MetLife uses MongoDB for “The Wall," a customer service application providing a "360-degree view" of MetLife customers.[33]
  • Craigslist stores over 2 billion records in MongoDB.[34]
  • SAP uses MongoDB in the SAP PaaS.[35]
  • Forbes stores articles and companies data in MongoDB.[36]
  • The New York Times uses MongoDB in its form-building application for photo submissions.[37]
  • Sourceforge uses MongoDB for its back-end storage pages.[38]
  • Codecademy uses MongoDB as the datastore for its online learning system.[39]
  • Shutterfly uses MongoDB for its photo platform. As of 2013, the photo platform stores 18 billion photos uploaded by Shutterfly's 7 million users.[40][41]
  • The Guardian uses MongoDB for its identity system.[42]
  • CERN uses MongoDB as the primary back-end for the Data Aggregation System for the Large Hadron Collider.[43]
  • Foursquare deploys MongoDB on Amazon AWS to store venues and user check-ins into venues.[44]
  • eBay uses MongoDB in the search suggestion and the internal Cloud Manager State Hub.[45]

See also

  • Apache's Erlang-based CouchDB (open source)
  • Couchbase (open source)
  • Apache's Cassandra (open source)
  • Apache's Java-based HBase and Accumulo (open source)
  • Basho Riak (open source, Apache License 2.0)
  • TokuMX high-performance distribution of MongoDB (open source)
  • Apache's Java-based ElasticSearch (open source)
  • ArangoDB (open source, Apache License 2.0)

References

  1. "10gen embraces what it created, becomes MongoDB Inc.". Gigaom. Retrieved 27 August 2013. 
  2. "DB-Engines Ranking". Retrieved 8 September 2013. 
  3. MongoDB daddy: My baby beats Google BigTable
  4. 4.0 4.1 The MongoDB NoSQL Database Blog, The AGPL
  5. The MongoDB NoSQL Database Blog, MongoDB 1.4 Ready for Production
  6. MongoDB Support by 10gen
  7. MongoDB Developer Manual
  8. GridFS article on MongoDB Developer's Manual
  9. NGINX plugin for MongoDB source code
  10. lighttpd plugin for MongoDB source code
  11. FAQ: Concurrency
  12. FAQ Concurrency - How Granular Are Locks
  13. FAQ Concurrency - How Does Sharding Affect Concurrency
  14. FAQ Concurrency - Do Operations Ever Yield the Lock
  15. 32-bit Limitations
  16. Does Everybody Hate MongoDB
  17. What is the Working Set
  18. Optimizing Your MongoDB Dataset
  19. 21.0 21.1 "MongoDB Drivers and Client Libraries — MongoDB Ecosystem 2.2.2". Mongodb.org. Retrieved 2013-07-08. 
  20. / (2012-11-27). "The database · MLstate/opalang Wiki · GitHub". Github.com. Retrieved 2013-07-08. 
  21. mongo - The Interactive Shell
  22. HTTP Console
  23. mongostat Manual
  24. mongotop Manual
  25. mongosniff Manual
  26. mongoimport Manual
  27. mongoexport Manual
  28. mongodump Manual
  29. mongorestore Manual
  30. Production Deployments
  31. MetLife Uses NoSQL For Customer Service Breakthrough
  32. Lessons Learned from Migrating 2+ Billion Documents at Craigslist
  33. The Quest to Understand the Use of MongoDB in the SAP PaaS
  34. Supporting Distributed Global Workforce of Contributors with MongoDB
  35. NYT + MongoDB in Production
  36. Scaling SourceForge with MongoDB
  37. How Codecademy is Using MongoDB
  38. Real World NoSQL: MongoDB at Shutterfly
  39. Here's How We Think Of Shutterfly's Stock Value
  40. MongoDB at The Guardian
  41. Holy Large Hadron Collider, Batman!
  42. Experiences Deploying MongoDB on AWS
  43. MongoDB at eBay

Bibliography

  • Banker, Kyle (March 28, 2011), MongoDB in Action (1st ed.), Manning, p. 375, ISBN 978-1-935182-87-0 
  • Chodorow, Kristina; Dirolf, Michael (September 23, 2010), MongoDB: The Definitive Guide (1st ed.), O'Reilly Media, p. 216, ISBN 978-1-4493-8156-1 
  • Pirtle, Mitch (March 3, 2011), MongoDB for Web Development (1st ed.), Addison-Wesley Professional, p. 360, ISBN 978-0-321-70533-4 
  • Hawkins, Tim; Plugge, Eelco; Membrey, Peter (September 26, 2010), The Definitive Guide to MongoDB: The NoSQL Database for Cloud and Desktop Computing (1st ed.), Apress, p. 350, ISBN 978-1-4302-3051-9 

External links

This article is issued from Wikipedia. The text is available under the Creative Commons Attribution/Share Alike; additional terms may apply for the media files.