MongoDB






Cross-platform document-oriented database




















































MongoDB
MongoDB-Logo.svg
Developer(s) MongoDB Inc.
Initial release February 11, 2009; 10 years ago (2009-02-11)[1]
Stable release
4.0.6[2]
/ 5 February 2019; 48 days ago (2019-02-05)
Preview release
4.1.8[3]
/ 12 February 2019; 41 days ago (2019-02-12)

Repository
  • github.com/mongodb/mongo
Edit this at Wikidata
Written in
C++, JavaScript, Python and Go
Operating system
Windows Vista and later, Linux, OS X 10.7 and later, Solaris,[4]FreeBSD[5]
Available in English
Type Document-oriented database
License Various; see § Licensing
Website www.mongodb.com

MongoDB is a cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with schemata. MongoDB is developed by MongoDB Inc. and licensed under the Server Side Public License (SSPL).




Contents






  • 1 History


  • 2 Main features


    • 2.1 Ad hoc queries


    • 2.2 Indexing


    • 2.3 Replication


    • 2.4 Load balancing


    • 2.5 File storage


    • 2.6 Aggregation


    • 2.7 Server-side JavaScript execution


    • 2.8 Capped collections


    • 2.9 Transactions




  • 3 Editions


    • 3.1 MongoDB Community Server


    • 3.2 MongoDB Enterprise Server


    • 3.3 MongoDB Atlas




  • 4 Architecture


    • 4.1 Programming language accessibility


    • 4.2 Serverless access


    • 4.3 Management and graphical front-ends




  • 5 Licensing


  • 6 Bug reports and criticisms


    • 6.1 Security


    • 6.2 Technical criticisms




  • 7 Prominent users


  • 8 MongoDB World


  • 9 See also


  • 10 References


  • 11 Bibliography


  • 12 External links





History



10gen software company began developing MongoDB in 2007 as a component of a planned platform as a service product. In 2009, the company shifted to an open source development model, with the company offering commercial support and other services. In 2013, 10gen changed its name to MongoDB Inc.[6]


On October 20, 2017, MongoDB became a publicly-traded company, listed on NASDAQ as MDB with an IPO price of $24 per share.[7]



Main features



Ad hoc queries


MongoDB supports field, range query, and regular expression searches.[8] Queries can return specific fields of documents and also include user-defined JavaScript functions. Queries can also be configured to return a random sample of results of a given size.



Indexing


Fields in a MongoDB document can be indexed with primary and secondary indices.



Replication


MongoDB provides high availability with replica sets.[9] A replica set consists of two or more copies of the data. Each replica set member may act in the role of primary or secondary replica at any time. All writes and reads are done on the primary replica by default. Secondary replicas maintain a copy of the data of 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 optionally serve read operations, but that data is only eventually consistent by default.



Load balancing


MongoDB scales horizontally using sharding.[10] 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 replicas.). Alternatively, the shard key can be hashed to map to a shard – enabling an even data distribution.


MongoDB can run over multiple servers, balancing the load or duplicating data to keep the system up and running in case of hardware failure.



File storage


MongoDB can be used as a file system, called GridFS, with load balancing and data replication features over multiple machines for storing files.


This function, called grid file system,[11] is included with MongoDB drivers. MongoDB exposes functions for file manipulation and content to developers. GridFS can be accessed using mongofiles utility or plugins for Nginx[12] and lighttpd.[13] GridFS divides a file into parts, or chunks, and stores each of those chunks as a separate document.[14]



Aggregation


MongoDB provides three ways to perform aggregation: the aggregation pipeline, the map-reduce function, and single-purpose aggregation methods.[15]


Map-reduce can be used for batch processing of data and aggregation operations. But according to MongoDB's documentation, the Aggregation Pipeline provides better performance for most aggregation operations.[16]


The aggregation framework enables users to obtain the kind of results for which the SQL GROUP BY clause is used. Aggregation operators can be strung together to form a pipeline – analogous to Unix pipes. The aggregation framework includes the $lookup operator which can join documents from multiple documents, as well as statistical operators such as standard deviation.



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.



Transactions


Support for multi-document ACID transactions was added to MongoDB with the General Availability of the 4.0 release in June 2018.[17]



Editions



MongoDB Community Server


The MongoDB Community Edition is free and available for Windows, Linux, and OS X.[18]



MongoDB Enterprise Server


MongoDB Enterprise Server is the commercial edition of MongoDB, available as part of the MongoDB Enterprise Advanced subscription.[19]



MongoDB Atlas


MongoDB is also available as an on-demand fully managed service. MongoDB Atlas runs on AWS, Microsoft Azure, and Google Cloud Platform.[20]



Architecture



Programming language accessibility


MongoDB has official drivers for major programming languages and development environments.[21] There are also a large number of unofficial or community-supported drivers for other programming languages and frameworks.



Serverless access


MongoDB Stitch[22] provides serverless access to MongoDB and other services. Client libraries are available for JavaScript[23], iOS[24], and Android[25].



Management and graphical front-ends




Record insertion in MongoDB with Robomongo 0.8.5.


The primary interface to the database has been the mongo shell. Since MongoDB 3.2, MongoDB Compass is introduced as the native GUI. There are products and third-party projects that offer user interfaces for administration and data viewing.[26]



Licensing


As of October 2018, MongoDB is released under the Server Side Public License (SSPL), a license developed by the project. It replaces the GNU Affero General Public License, and is nearly identical to the GNU General Public License version 3, but requires that those making the software publicly available as part of a "service" must make the service's entire source code available under this license.[27][28] The SSPL was submitted for certification to the Open Source Initiative but later withdrawn. The language drivers are available under an Apache License. In addition, MongoDB Inc. offers proprietary licenses for MongoDB. The last versions licensed as AGPL version 3 are 4.0.3 (stable) and 4.1.4.


MongoDB has been dropped from the Debian, Fedora and Red Hat Enterprise Linux distributions due to the licensing change. Fedora determined that the SSPL version 1 is not a free software license because it is "intentionally crafted to be aggressively discriminatory" towards commercial users.[29][30]



Bug reports and criticisms



Security


Due to the default security configuration of MongoDB, allowing anyone to have full access to the database, data from tens of thousands of MongoDB installations has been stolen. Furthermore, many MongoDB servers have been held for ransom.[31][32]


From the MongoDB 2.6 release onwards, the binaries from the official MongoDB RPM and DEB packages bind to localhost by default. From MongoDB 3.6, this default behavior was extended to all MongoDB packages across all platforms. As a result, all networked connections to the database will be denied unless explicitly configured by an administrator.[33]



Technical criticisms


In some failure scenarios where an application can access two distinct MongoDB processes, but these processes cannot access each other, it is possible for MongoDB to return stale reads. In this scenario it is also possible for MongoDB to roll back writes that have been acknowledged.[34] This issue was addressed since version 3.4.0 released in November 2016[35] (and back-ported to v3.2.12).[36]


Before version 2.2, concurrency control was implemented on a per-server process basis. With version 2.2, concurrency control was implemented at the database level.[37] Since version 3.0,[38] pluggable storage engines were introduced, and each storage engine may implement concurrency control differently.[39] With MongoDB 3.0 concurrency control is implemented at the collection level for the MMAPv1 storage engine,[40] and at the document level with the WiredTiger storage engine.[41] With versions prior to 3.0, one approach to increase concurrency is to use sharding.[42] 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.[43]


Up until version 3.3.11, MongoDB could not do collation-based sorting and was limited to byte-wise comparison via memcmp which would not provide correct ordering for many non-English languages when used with a Unicode encoding. The issue was fixed on August 23, 2016.


With storage engine MMAPv1, MongoDB queries against an index are not atomic and can miss documents which are being updated while the query is running and match the query both before and after an update. [44] Prior to MongoDB 4.0 queries against an index were not atomic and could miss documents which were being updated while the query was running and match the query both before and after an update. The introduction of the snapshot read concern in MongoDB 4.0 eliminated this phenomenon. [45]



Prominent users


MongoDB is known to be used by the City of Chicago, Codecademy, Google Search, Foursquare, IBM, Orange S.A., The Gap, Inc., Uber, Coinbase, Sega, Barclays, HSBC, eBay, Cisco, Bosch and Urban Outfitters.[46][47]



MongoDB World


MongoDB World is an annual developer conference hosted by MongoDB, Inc.[48]



See also




  • List of server-side JavaScript implementations


  • MEAN, a solutions stack using MongoDB as the database

  • Server-side scripting


  • TokuMX, a fork of MongoDB with stronger consistency and new index structures



References





  1. ^ "State of MongoDB March, 2010". DB-Engines..mw-parser-output cite.citation{font-style:inherit}.mw-parser-output .citation q{quotes:"""""""'""'"}.mw-parser-output .citation .cs1-lock-free a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Lock-green.svg/9px-Lock-green.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .citation .cs1-lock-limited a,.mw-parser-output .citation .cs1-lock-registration a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Lock-gray-alt-2.svg/9px-Lock-gray-alt-2.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .citation .cs1-lock-subscription a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Lock-red-alt-2.svg/9px-Lock-red-alt-2.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .cs1-subscription,.mw-parser-output .cs1-registration{color:#555}.mw-parser-output .cs1-subscription span,.mw-parser-output .cs1-registration span{border-bottom:1px dotted;cursor:help}.mw-parser-output .cs1-ws-icon a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/12px-Wikisource-logo.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output code.cs1-code{color:inherit;background:inherit;border:inherit;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;font-size:100%}.mw-parser-output .cs1-visible-error{font-size:100%}.mw-parser-output .cs1-maint{display:none;color:#33aa33;margin-left:0.3em}.mw-parser-output .cs1-subscription,.mw-parser-output .cs1-registration,.mw-parser-output .cs1-format{font-size:95%}.mw-parser-output .cs1-kern-left,.mw-parser-output .cs1-kern-wl-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right,.mw-parser-output .cs1-kern-wl-right{padding-right:0.2em}


  2. ^ "Release 4.0.6". MongoDB.


  3. ^ "Release 4.1.8". MongoDB.


  4. ^ "How to Set Up a MongoDB NoSQL Cluster Using Oracle Solaris Zones". Oracle.


  5. ^ "How-To: MongoDB on FreeBSD 10.x". FreeBSD News.


  6. ^ "10gen embraces what it created, becomes MongoDB Inc". Gigaom. Retrieved January 29, 2016.


  7. ^ Witkowski, Wallace (October 21, 2017). "MongoDB shares rally 34% in first day of trading above elevated IPO price". MarketWatch. Dow Jones. Retrieved February 26, 2018.


  8. ^ Davis Kerby. "Why MongoDB is the way to go". DZone.


  9. ^ "Ridiculously fast MongoDB replica recovery Part 1 of 2". ClusterHQ.


  10. ^ "Turning MongoDB Replica Set to a Sharded Cluster". Severalnines.


  11. ^ "GridFS & MongoDB: Pros & Cons". Compose.


  12. ^ "NGINX plugin for MongoDB source code". GitHub.


  13. ^ "lighttpd plugin for MongoDB source code". Bitbucket.


  14. ^ Malick Md. "MongoDB overview". Expertstown.


  15. ^ "Aggregation — MongoDB Manual". docs.mongodb.com. Retrieved August 14, 2018.


  16. ^ "Map-Reduce — MongoDB Manual". docs.mongodb.com. Retrieved August 14, 2018.


  17. ^ MongoDB Drives NoSQL More Deeply into Enterprise Opportunities


  18. ^ "MongoDB Download Center". MongoDB. Retrieved August 14, 2018.


  19. ^ "MongoDB Download Center". MongoDB. Retrieved August 14, 2018.


  20. ^ "MongoDB Launces Global Clusters to Put Geographic Data Control Within Reach of Anyone". MongoDB. Retrieved June 27, 2018.


  21. ^ MongoDB. "GitHub - mongodb/mongo". GitHub.


  22. ^ Simon Bisson. "MongoDB Stitch: Serverless compute with a big difference". ZDNet.


  23. ^ MongoDB. "MongoDB Stitch JavaScript SDK". GitHub.


  24. ^ MongoDB. "MongoDB Stitch iOS SDK". GitHub.


  25. ^ MongoDB. "MongoDB Stitch Android SDK". GitHub.


  26. ^ Ma, Jason. "Visualizing Your Data With MongoDB Compass". Dzone. Dzone.com.


  27. ^ Baer, Tony. "It's MongoDB's turn to change its open source license". ZDNet. Retrieved October 16, 2018.


  28. ^ "MongoDB switches up its open source license". TechCrunch. Retrieved October 16, 2018.


  29. ^ Vaughan-Nichols, Steven J. "MongoDB "open-source" Server Side Public License rejected". ZDNet. Retrieved January 17, 2019.


  30. ^ "MongoDB's licensing changes led Red Hat to drop the database from the latest version of its server OS". GeekWire. January 16, 2019. Retrieved January 17, 2019.


  31. ^ Krebs, Brian. "Extortionists Wipe Thousands of Databases, Victims Who Pay Up Get Stiffed". krebsonsecurity.com. Brian Krebs. Retrieved January 11, 2017.


  32. ^ Constantin, Lucian. "Ransomware groups have deleted over 10,000 MongoDB databases". Computer World. IDG. Retrieved January 11, 2017.


  33. ^ "MongoDB Bind IP Compatibility". MongoDB. MongoDB. Retrieved March 5, 2019.


  34. ^ Kyle Kingsbury (April 20, 2015). "Call me maybe: MongoDB stale reads". Retrieved July 4, 2015.


  35. ^ https://docs.mongodb.com/manual/release-notes/3.4/


  36. ^ Kingsbury, Kyle (February 7, 2017). "MongoDB 3.4.0-rc3". Jepsen.


  37. ^ "Atomicity, isolation & concurrency in MongoDB". scalegrid.io.


  38. ^ "MongoDB Goes Pluggable with Storage Engines". datanami.com. March 5, 2015.


  39. ^ "MongoDB Goes Pluggable with Storage Engines". datanami.com. March 5, 2015.


  40. ^ Arborian Consulting. "MongoDB, MMAPv1, WiredTiger, Locking, and Queues". Arborian Consulting.


  41. ^ Kenny Gorman. "MongoDB 3.0 WiredTiger Compression and Performance". Objectrocket.com/.


  42. ^ Mikita Manko. "MongoDB performance bottlenecks, optimization Strategies for MongoDB". mikitamanko.com.


  43. ^ scalegrid.io. "Atomicity, isolation & concurrency in MongoDB". scalegrid.io.


  44. ^ MongoDB queries don’t always return all matching documents!


  45. ^ "MongoDB Docs". Retrieved March 5, 2019.


  46. ^ Esayas Aloto (November 4, 2015). "Who's Using MongoDB and Why?". Datavail. Retrieved November 12, 2018.


  47. ^ "Companies that use MongoDB & MongoDB Integrations". StackShare. Retrieved November 12, 2018.


  48. ^ MongoDB World




Bibliography


.mw-parser-output .refbegin{font-size:90%;margin-bottom:0.5em}.mw-parser-output .refbegin-hanging-indents>ul{list-style-type:none;margin-left:0}.mw-parser-output .refbegin-hanging-indents>ul>li,.mw-parser-output .refbegin-hanging-indents>dl>dd{margin-left:0;padding-left:3.2em;text-indent:-3.2em;list-style:none}.mw-parser-output .refbegin-100{font-size:100%}



  • 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 Edit this at Wikidata








這個網誌中的熱門文章

12.7 cm/40 Type 89 naval gun

Shark

Wiciokrzew