MongoDB: Difference between revisions
Jameswahlin (talk | contribs) m →Licensing and support: Changed 10gen to MongoDB Inc. as section mentions the company in the present tense. |
|||
Line 232: | Line 232: | ||
* [http://openmymind.net/2011/3/28/The-Little-MongoDB-Book/ The Little MongoDB Book] |
* [http://openmymind.net/2011/3/28/The-Little-MongoDB-Book/ The Little MongoDB Book] |
||
* [http://perfectmarket.com/blog/not_only_nosql_review_solution_evaluation_guide_chart NoSQL Solution: Evaluation and Comparison: MongoDB vs Redis, Tokyo Cabinet, and Berkeley DB] |
* [http://perfectmarket.com/blog/not_only_nosql_review_solution_evaluation_guide_chart NoSQL Solution: Evaluation and Comparison: MongoDB vs Redis, Tokyo Cabinet, and Berkeley DB] |
||
* [http://www.dreamsyssoft.com/blog/blog.php?/archives/9-REST-Service-with-Node.js,-MongoDB-and-Express.html Tutorial on using MongoDB with Node.js] |
|||
{{DEFAULTSORT:Mongodb}} |
{{DEFAULTSORT:Mongodb}} |
Revision as of 02:44, 30 August 2013
Developer(s) | MongoDB Inc. |
---|---|
Initial release | 2009 |
Stable release | 2.4.6
/ 20 August 2013 |
Repository | |
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 (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 the New York City-based company 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.
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.[2] In 2009, MongoDB was open sourced as a stand-alone product[3] with an AGPL license.
In March 2010, from version 1.4, MongoDB has been considered production ready.[4]
The latest stable version, 2.4.6, was released on August 20, 2013.
Licensing and support
MongoDB is available for free under the GNU Affero General Public License.[3] The language drivers are available under an Apache License. In addition, MongoDB Inc. offers commercial licenses for MongoDB.[5]
Main features
The following is a brief summary of some of the main features:
- 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 supports master-slave replication. A master can perform reads and writes. A slave copies data from the master and can only be used for reads or backup (not writes). The slaves have the ability to select a new master if the current one goes down.
- Load balancing
- MongoDB scales horizontally using sharding.[6] The developer 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 could 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,[7] 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.[8] and lighttpd[9]
- 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), are 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.
For further information on the points listed look up the MongoDB Developer Manual
Language support
MongoDB has official drivers for a variety of popular programming languages and development environments.[10] 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.[11] There are also a large number of unofficial or community-supported drivers for other programming languages and frameworks.[10]
HTTP/REST interfaces
There are REST and HTTP interfaces that allow the manipulation of MongoDB entries via HTTP GET, POST, UPDATE, and DELETE calls.
An overview of the available HTTP/REST interfaces can be found on the MongoDB website.
Management and graphical front-ends
MongoDB tools
In a MongoDB installation the following commands are available:
- mongo
- MongoDB offers an interactive shell called mongo,[12] 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,[13] 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[14] 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[15] 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[16] 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[17] is a command-line utility to import content from a JSON, CSV, or TSV export created by mongoexport[18] or potentially other third-party data exports. Usage information can be found in the MongoDB Manual's section on Importing and Exporting MongoDB Data.
- mongodump, mongorestore
- mongodump[19] is a command-line utility for creating a binary export of the contents of a Mongo database; mongorestore[20] can be used to reload a database dump. Data backup strategies and considerations are detailed in the MongoDB Manual's section on Backup and Restoration Strategies.
Monitoring plugins
There are MongoDB monitoring plugins available for the following network tools:
- mongo-munin: Plugin for Munin
- mongodb-ganglia: Plugin for ganglia
- MongoDB Cacti Graphs: Plugin for cacti
- MongoDB Slow Queries: Plugin for Scout
More monitoring and diagnostic tools for MongoDB are listed on MongoDB Admin Zone: Monitoring and Diagnostics
Cloud-based monitoring services
- MongoDB Management Service (MMS) is a cloud-based suite of services for managing MongoDB deployments. It includes monitoring and backup capabilities. MMS is developed by 10gen, the company behind MongoDB.
- Server Density is a cloud-based tool which helps you provision and monitor your infrastructure. It includes a custom dashboard for MongoDB, MongoDB specific alerts, replication failover timeline and iPhone, iPad and Android mobile apps.
Web and desktop application GUIs
Several GUIs have been created by MongoDB's developer community to help visualize their data. Some popular ones are:
Open source tools
- RockMongo: PHP-based MongoDB administration GUI tool
- phpMoAdmin: another PHP GUI that runs entirely from a single 95kb self-configuring file
- UMongo: a desktop application for all platforms.
- Mongo3: a Ruby-based interface.
- Meclipse: Eclipse plugin for interacting with MongoDB
- MongoHub: a freeware native Mac OS X application for managing MongoDB. Version for other operating systems is built on Titanium Desktop.
- mViewer: A simple web-based Administration and Management Tool for MongoDB written in Java.
- MongoDBPumper: a commercial high-performance data transfer solution to provide export and import functionality between Oracle and MongoDB databases.
More client tools for MongoDB are listed on MongoDB Administrator Manual
Business intelligence tools and solutions
- Jaspersoft BI: Java based Report Designer and Report Server that supports MongoDB
- Pentaho: MongoDB connectors for Pentaho Kettle and Pentaho BI
- RJMetrics: A hosted Business Intelligence Solution that supports MongoDB.
- eCommerce Analytics: eCommerce Analytics Software that supports MongoDB data analysis.
- Nucleon BI Studio: MS Windows based business intelligence software that supports MongoDB and other RDBMS.
Production Deployments
Some of the prominent users of MongoDB include:[21]
- Craigslist stores over 2 billion records in MongoDB. [22]
- SAP uses MongoDB in the SAP PaaS. [23]
- Forbes stores articles and companies data in MongoDB. [24]
- The New York Times uses MongoDB in its form-building application for photo submissions. [25]
- Sourceforge uses MongoDB for its back-end storage pages. [26]
- Codecademy[27]
- Shutterfly uses MongoDB for its photo platform. As of 2013, the photo platform stores 18 billion photos uploaded by Shutterfly's 7 million users. [28] [29]
- The Guardian uses MongoDB for its identity system. [30]
- CERN uses MongoDB as the primary back-end for the Data Aggregation System for the Large Hadron Collider.[31]
- Foursquare deploys MongoDB on Amazon AWS to store venues and user check-ins into venues. [32]
- eBay uses MongoDB in the search suggestion and the internal Cloud Manager State Hub. [33]
See also
- Apache's Erlang-based CouchDB (open source)
- Apache's Java-based HBase (open source)
- Basho Riak (open source, Apache License 2.0)
- NoSQL, i.e., Structured storage
References
- ^ "10gen embraces what it created, becomes MongoDB Inc". Gigaom. Retrieved 27 August 2013.
- ^ MongoDB daddy: My baby beats Google BigTable
- ^ a b The MongoDB NoSQL Database Blog, The AGPL
- ^ The MongoDB NoSQL Database Blog, MongoDB 1.4 Ready for Production
- ^ MongoDB Support by 10gen
- ^ Article "Sharding" on MongoDB Administrator's Manual
- ^ GridFS article on MongoDB Developer's Manual
- ^ NGINX plugin for MongoDB source code
- ^ lighttpd plugin for MongoDB source code.
- ^ a b "MongoDB Drivers and Client Libraries — MongoDB Ecosystem 2.2.2". Mongodb.org. Retrieved 2013-07-08.
- ^ / (2012-11-27). "The database · MLstate/opalang Wiki · GitHub". Github.com. Retrieved 2013-07-08.
{{cite web}}
:|author=
has numeric name (help) - ^ mongo - The Interactive Shell
- ^ HTTP Console
- ^ mongostat Manual
- ^ mongotop Manual
- ^ mongosniff Manual
- ^ mongoimport Manual
- ^ mongoexport Manual
- ^ mongodump Manual
- ^ mongorestore Manual
- ^ Production Deployments
- ^ Lessons Learned from Migrating 2+ Billion Documents at Craigslist
- ^ The Quest to Understand the Use of MongoDB in the SAP PaaS
- ^ Supporting Distributed Global Workforce of Contributors with MongoDB
- ^ NYT + MongoDB in Production
- ^ Scaling SourceForge with MongoDB
- ^ How Codeacademy is Using MongoDB
- ^ Real World NoSQL: MongoDB at Shutterfly
- ^ Here's How We Think Of Shutterfly's Stock Value
- ^ MongoDB at The Guardian
- ^ Holy Large Hadron Collider, Batman!
- ^ Experiences Deploying MongoDB on AWS
- ^ 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
- Official website
- MongoDB on Facebook
- MongoDB on Twitter
- MongoDB with ZanPHP Spanish Documentation
- mongoDB User Group on LinkedIn
- MongoDB news and articles on myNoSQL
- Eric Lai. (2009, July 1). No to SQL? Anti-database movement gains steam
- Videos about MongoDB on MrBool.com
- MongoDB articles on NoSQLDatabases.com
- June 2009 San Francisco NOSQL Meetup Page
- Designing for the Cloud at MIT Technology Review
- EuroPython Conference Presentation
- Non-relational data persistence in Java using MongoDB - Software Engineer at MongoDB on YouTube
- Interview with Mike Dirolf on The Changelog about MongoDB background and design decisions
- MongoMvc - A MongoDB Demo App with ASP.NET MVC
- FAQs about MongoDB
- Is MongoDB a good alternative to RDBMs databases?
- SQL to Mongo Mapping Chart
- The Little MongoDB Book
- NoSQL Solution: Evaluation and Comparison: MongoDB vs Redis, Tokyo Cabinet, and Berkeley DB
- Tutorial on using MongoDB with Node.js