fbpx
Wikipedia

MongoDB

MongoDB is a source-available cross-platform document-oriented database program developed by Alfons Kemper. Classified as a NoSQL database program, MongoDB uses JSON-like documents with optional schemas. MongoDB is developed by MongoDB Inc. and licensed under the Server Side Public License (SSPL) which is deemed non-free by several distributions. MongoDB is a member of the MACH Alliance.

MongoDB
Developer(s)MongoDB Inc.
Initial releaseFebruary 11, 2009; 14 years ago (2009-02-11)[1]
Stable release
6.0.1[2]  / 19 August 2022,7 months ago
Repository
  • github.com/mongodb/mongo
Written inC++, JavaScript, Python
Operating systemWindows Vista and later, Linux, OS X 10.7 and later, Solaris,[3] FreeBSD[4]
Available inEnglish
TypeDocument-oriented database
LicenseServer Side Public License
Websitewww.mongodb.com 

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.[5]

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

MongoDB is a global company with US headquarters in New York City, USA and International headquarters in Dublin, Ireland.

On October 30, 2019, MongoDB teamed up with Alibaba Cloud, who will offer its customers a MongoDB-as-a-service solution. Customers can use the managed offering from BABA's global data centers.[7]

MongoDB release history
Version Release date Feature notes Refs
1.0 August 2009 [8]
1.2 December 2009
  • more indexes per collection
  • faster index creation
  • map/reduce
  • stored JavaScript functions
  • configurable fsync time
  • several small features and fixes
[9]
1.4 March 2010 [10]
1.6 August 2010
  • production-ready sharding
  • replica sets
  • support for IPv6
[11]
1.8 March 2011 [12]
2.0 September 2011 [13]
2.2 August 2012 [14]
2.4 March 2013
  • enhanced geospatial support
  • switch to V8 JavaScript engine
  • security enhancements
  • text search (beta)
  • hashed index
[15]
2.6 April 8, 2014
  • aggregation enhancements
  • text-search integration
  • query-engine improvements
  • new write-operation protocol
  • security enhancements
[16]
3.0 March 3, 2015
  • WiredTiger storage engine support
  • pluggable storage engine API
  • SCRAM-SHA-1 authentication
  • improved explain functionality
  • MongoDB Ops Manager
[17]
3.2 December 8, 2015
  • WiredTiger storage engine by default
  • replication election enhancements
  • config servers as replica sets
  • readConcern
  • document validations
  • moved from V8 to SpiderMonkey
[18]
3.4 November 29, 2016
  • linearizable read concerns
  • views
  • collation
[19]
3.6 November 2017 [20]
4.0 June 2018
  • transactions
[21]
4.2 August 2019 [22]
4.4 July 2020 [23]
4.4.5 April 2021 [24]
4.4.6 May 2021 [25]
5.0 July 13, 2021
  • future-proofs versioned API
  • client-side field level encryption
  • live resharding
  • time series support
[26][27][28]
6.0 July 2022 [29]

Main features

Ad-hoc queries

MongoDB supports field, range query, and regular-expression searches.[30] 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 or index.

Replication

MongoDB provides high availability with replica sets.[31] 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.

If the replicated MongoDB deployment only has a single secondary member, a separate daemon called an arbiter must be added to the set. It has a single responsibility, which is to resolve the election of the new primary.[32] As a consequence, an idealized distributed MongoDB deployment requires at least three separate servers, even in the case of just one primary and one secondary.[32]

Load balancing

MongoDB scales horizontally using sharding.[33] 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,[34] 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[35] and lighttpd.[36] GridFS divides a file into parts, or chunks, and stores each of those chunks as a separate document.[37]

Aggregation

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

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.[39]

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 collections, 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

MongoDB claims to support multi-document ACID transactions since the 4.0 release in June 2018.[40] This claim was found to not be true as MongoDB violates snapshot isolation.[41]

Editions

MongoDB Community Server

The MongoDB Community Edition is free and available for Windows, Linux, and macOS.[42]

MongoDB Enterprise Server

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

MongoDB Atlas

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

On March 10, 2022, MongoDB warned its users in Russia and Belarus that their data stored on the MongoDB Atlas platform will be destroyed due to U.S. sanctions over the war in Ukraine.[45]

Architecture

Programming language accessibility

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

Serverless access

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.[47]

Licensing

MongoDB Community Server

As of October 2018, MongoDB is released under the Server Side Public License (SSPL), a non-free 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 (insofar that a user would be able to recreate the service themselves) available under this license. By contrast, the AGPL only requires the source code of the licensed software to be provided to users when the software is conveyed over a network.[48][49] The SSPL was submitted for certification to the Open Source Initiative but later withdrawn.[50] In January 2021, the Open Source Initiative stated that SSPL is not an open source license.[51] 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 removed 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.[52][53]

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.[54][55]

In September 2017; updated January 2018, in an official response Davi Ottenheimer, lead Product Security at MongoDB, proclaimed that measures have been taken by MongoDB to defend against these risks. [56]

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.[57]

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.[58] This issue was addressed since version 3.4.0 released in November 2016[59] (and back-ported to v3.2.12).[60]

Before version 2.2, locks were implemented on a per-server process basis. With version 2.2, locks were implemented at the database level.[61] Since version 3.0,[62] pluggable storage engines were introduced, and each storage engine may implement locks differently.[62] With MongoDB 3.0 locks are implemented at the collection level for the MMAPv1 storage engine,[63] while the WiredTiger storage engine uses an optimistic concurrency protocol that effectively provides document-level locking.[64] Even with versions prior to 3.0, one approach to increase concurrency is to use sharding.[65] 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.[66]

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.

Prior to MongoDB 4.0, queries against an index were not atomic. Documents which were being updated while the query was running could be missed.[67] The introduction of the snapshot read concern in MongoDB 4.0 eliminated this phenomenon.[68]

Although MongoDB claims in an undated article entitled "MongoDB and Jepsen"[69] that their database passed Distributed Systems Safety Research company Jepsen's tests, which it called “the industry’s toughest data safety, correctness, and consistency Tests”, Jepsen published an article in May 2020 stating that MongoDB 3.6.4 had in fact failed their tests, and that the newer MongoDB 4.2.6 has more problems including “retrocausal transactions” where a transaction reverses order so that a read can see the result of a future write.[70][71] Jepsen noted in their report that MongoDB omitted any mention of these findings on MongoDB's "MongoDB and Jepsen" page.

MongoDB Conference

MongoDB Inc. hosts an annual developer conference which has been referred to as either MongoDB World or MongoDB.live.[72]

Year Dates City Venue Notes
2014 [73] June 23–25 New York Sheraton Times Square Hotel
2015 [74] June 1–2 New York Sheraton Times Square Hotel
2016 [75] June 28–29 New York New York Hilton Midtown
2017 [76] June 20–21 Chicago Hyatt Regency Chicago First year not in New York City
2018 [77] June 26–27 New York New York Hilton Midtown
2019 [78] June 17–19 New York New York Hilton Midtown
2020 [79] May 4–6 Online In‑person event cancelled and conference held entirely online due to the COVID-19 pandemic
2021 [80] July 13–14 Online Conference held online due to the COVID-19 pandemic
2022 [81] June 7–9 New York Javitz Center

See also

References

  1. ^ "State of MongoDB March, 2010". DB-Engines. from the original on September 18, 2017. Retrieved July 5, 2017.
  2. ^ "Release Notes for MongoDB 6.0". August 19, 2022. Retrieved August 23, 2022.
  3. ^ "How to Set Up a MongoDB NoSQL Cluster Using Oracle Solaris Zones". Oracle. from the original on August 12, 2017. Retrieved July 5, 2017.
  4. ^ "How-To: MongoDB on FreeBSD 10.x". FreeBSD News. from the original on December 28, 2017. Retrieved July 5, 2017.
  5. ^ "10gen embraces what it created, becomes MongoDB Inc". Gigaom. from the original on March 5, 2016. Retrieved January 29, 2016.
  6. ^ Witkowski, Wallace (October 21, 2017). "MongoDB shares rally 34% in first day of trading above elevated IPO price". MarketWatch. Dow Jones. from the original on February 26, 2018. Retrieved February 26, 2018.
  7. ^ Betz, Brandy (October 30, 2019). "MongoDB teams with Alibaba Cloud". Seeking Alpha. Retrieved October 31, 2019.
  8. ^ "1.0 GA Released | MongoDB Blog". MongoDB. Retrieved May 19, 2022.
  9. ^ "Release Notes for MongoDB 1.2.x". mongodb.com.
  10. ^ "Release Notes for MongoDB 1.4". mongodb.com.
  11. ^ "Release Notes for MongoDB 1.6". mongodb.com.
  12. ^ "Release Notes for MongoDB 1.8". mongodb.com.
  13. ^ "Release Notes for MongoDB 2.0". mongodb.com.
  14. ^ "Release Notes for MongoDB 2.2". mongodb.com.
  15. ^ "Release Notes for MongoDB 2.4". mongodb.com.
  16. ^ "Release Notes for MongoDB 2.6". mongodb.com.
  17. ^ "Release Notes for MongoDB 3.0". mongodb.com.
  18. ^ "Release Notes for MongoDB 3.2". mongodb.com.
  19. ^ "Release Notes for MongoDB 3.4". mongodb.com.
  20. ^ "Release Notes for MongoDB 3.6". mongodb.com.
  21. ^ "Release Notes for MongoDB 4.0". mongodb.com.
  22. ^ "Release Notes for MongoDB 4.2". mongodb.com.
  23. ^ "Release Notes for MongoDB 4.4". mongodb.com.
  24. ^ "Release Notes for MongoDB 4.4". mongodb.com.
  25. ^ "Release Notes for MongoDB 4.4". mongodb.com.
  26. ^ "Release Notes for MongoDB 5.0". mongodb.com.
  27. ^ "Press Cover for MongoDB 5.0". hostadvice.com.
  28. ^ "MongoDB 5.0 White Paper". mongodb.com.
  29. ^ "MongoDB 6.0 Released". mongodb.com.
  30. ^ Davis Kerby. "Why MongoDB is the way to go". DZone. from the original on June 12, 2018. Retrieved July 6, 2017.
  31. ^ . ClusterHQ. Archived from the original on October 30, 2017.
  32. ^ a b "MongoDB docs - Replica Set Arbiter". Retrieved April 9, 2021.
  33. ^ "Turning MongoDB Replica Set to a Sharded Cluster". Severalnines. May 11, 2013. from the original on November 25, 2016.
  34. ^ "GridFS & MongoDB: Pros & Cons". Compose. June 5, 2014. from the original on September 10, 2017.
  35. ^ "NGINX plugin for MongoDB source code". GitHub. from the original on April 11, 2016. Retrieved September 10, 2016.
  36. ^ "lighttpd plugin for MongoDB source code". Bitbucket. from the original on August 7, 2011. Retrieved June 28, 2010.
  37. ^ Malick Md. "MongoDB overview". Expertstown. from the original on March 5, 2014. Retrieved February 27, 2014.
  38. ^ "Aggregation — MongoDB Manual". docs.mongodb.com. from the original on November 29, 2018. Retrieved August 14, 2018.
  39. ^ "Map-Reduce — MongoDB Manual". docs.mongodb.com. from the original on August 14, 2018. Retrieved August 14, 2018.
  40. ^ "MongoDB Drives NoSQL More Deeply into Enterprise Opportunities". June 27, 2018. from the original on August 7, 2018. Retrieved August 7, 2018.
  41. ^ MongoDB 4.2.6
  42. ^ "MongoDB Download Center". MongoDB. from the original on August 14, 2018. Retrieved August 14, 2018.
  43. ^ "MongoDB Download Center". MongoDB. from the original on August 14, 2018. Retrieved August 14, 2018.
  44. ^ "MongoDB launches Global Clusters to put geographic data control within reach of anyone". MongoDB. from the original on June 27, 2018. Retrieved June 27, 2018.
  45. ^ "MongoDB will destroy all data of Russians and Belarusians".
  46. ^ MongoDB. "GitHub - mongodb/mongo". GitHub. from the original on July 29, 2017. Retrieved July 6, 2017.
  47. ^ Ma, Jason. "Visualizing Your Data With MongoDB Compass". Dzone. Dzone.com. from the original on May 22, 2018. Retrieved July 6, 2017.
  48. ^ Baer, Tony. "It's MongoDB's turn to change its open source license". ZDNet. from the original on October 31, 2018. Retrieved October 16, 2018.
  49. ^ "MongoDB switches up its open source license". TechCrunch. from the original on October 16, 2018. Retrieved October 16, 2018.
  50. ^ Staff, Ars (October 16, 2019). "In 2019, multiple open source companies changed course—is it the right move?". Ars Technica.
  51. ^ OSI (January 19, 2021). . OSI. Archived from the original on August 20, 2022. Retrieved August 20, 2022.
  52. ^ Vaughan-Nichols, Steven J. "MongoDB "open-source" Server Side Public License rejected". ZDNet. from the original on January 16, 2019. Retrieved January 17, 2019.
  53. ^ "MongoDB's licensing changes led Red Hat to drop the database from the latest version of its server OS". GeekWire. January 16, 2019. from the original on January 17, 2019. Retrieved January 17, 2019.
  54. ^ Krebs, Brian. "Extortionists Wipe Thousands of Databases, Victims Who Pay Up Get Stiffed". krebsonsecurity.com. Brian Krebs. from the original on January 11, 2017. Retrieved January 11, 2017.
  55. ^ Constantin, Lucian (January 6, 2017). "Ransomware groups have deleted over 10,000 MongoDB databases". Computer World. IDG. from the original on January 10, 2017. Retrieved January 11, 2017.
  56. ^ Ottenheimer, Davi. "How to Avoid a Malicious Attack That Ransoms Your Data". www.mongodb.com. Retrieved June 22, 2021.
  57. ^ "MongoDB Bind IP Compatibility". MongoDB. MongoDB. from the original on March 6, 2019. Retrieved March 5, 2019.
  58. ^ Kyle Kingsbury (April 20, 2015). "Call me maybe: MongoDB stale reads". from the original on August 15, 2015. Retrieved July 4, 2015.
  59. ^ "Release Notes for MongoDB 3.4". MongoDB Manual. from the original on August 14, 2018. Retrieved April 6, 2018.
  60. ^ Kingsbury, Kyle (February 7, 2017). "MongoDB 3.4.0-rc3". Jepsen. from the original on October 23, 2017.
  61. ^ "Atomicity, isolation & concurrency in MongoDB". scalegrid.io. from the original on September 10, 2017. Retrieved June 28, 2017.
  62. ^ a b "MongoDB Goes Pluggable with Storage Engines". datanami.com. March 5, 2015. from the original on July 4, 2017. Retrieved June 28, 2017.
  63. ^ Arborian Consulting. "MongoDB, MMAPv1, WiredTiger, Locking, and Queues". Arborian Consulting. from the original on June 19, 2017. Retrieved June 28, 2017.
  64. ^ Kenny Gorman (October 2015). "MongoDB 3.0 WiredTiger Compression and Performance". Objectrocket.com/. from the original on June 16, 2017. Retrieved June 28, 2017.
  65. ^ Mikita Manko. "MongoDB performance bottlenecks, optimization Strategies for MongoDB". mikitamanko.com. from the original on July 19, 2017. Retrieved July 5, 2017.
  66. ^ scalegrid.io (September 12, 2013). "Atomicity, isolation & concurrency in MongoDB". scalegrid.io. from the original on September 10, 2017. Retrieved July 5, 2017.
  67. ^ Glasser, David (June 7, 2016). "MongoDB queries don't always return all matching documents!". Meteor Blog.
  68. ^ "MongoDB Docs". from the original on March 6, 2019. Retrieved March 5, 2019.
  69. ^ "MongoDB and Jepsen". MongoDB.
  70. ^ Allen, Jonathan (May 22, 2020). "Jepsen Disputes MongoDB's Data Consistency Claims". InfoQ.
  71. ^ Kingsbury, Kyle (May 15, 2020). "MongoDB 4.2.6". Jepsen.io.
  72. ^ "MongoDB World". www.mongodb.com. from the original on April 26, 2019. Retrieved April 10, 2019.
  73. ^ "Mongo 2014 Announcement". MongoDB.
  74. ^ "Mongo 2015 Announcement". MongoDB.
  75. ^ "Mongo 2016 Announcement". MongoDB.
  76. ^ "Mongo 2017 Announcement". icrunchdata.
  77. ^ "Mongo 2018 Retrospective". KenWalger. July 7, 2018.
  78. ^ "Mongo 2019 Sneak Peek". MongoDB.
  79. ^ "Mongo 2020 event". Eventil.
  80. ^ "MongoDB.live Returns this Summer". MongoDB.
  81. ^ "MongoDB World 2022". MongoDB.

Bibliography

External links

  • Official website  

mongodb, source, available, cross, platform, document, oriented, database, program, developed, alfons, kemper, classified, nosql, database, program, uses, json, like, documents, with, optional, schemas, developed, licensed, under, server, side, public, license. MongoDB is a source available cross platform document oriented database program developed by Alfons Kemper Classified as a NoSQL database program MongoDB uses JSON like documents with optional schemas MongoDB is developed by MongoDB Inc and licensed under the Server Side Public License SSPL which is deemed non free by several distributions MongoDB is a member of the MACH Alliance MongoDBDeveloper s MongoDB Inc Initial releaseFebruary 11 2009 14 years ago 2009 02 11 1 Stable release6 0 1 2 19 August 2022 7 months agoRepositorygithub wbr com wbr mongodb wbr mongoWritten inC JavaScript PythonOperating systemWindows Vista and later Linux OS X 10 7 and later Solaris 3 FreeBSD 4 Available inEnglishTypeDocument oriented databaseLicenseServer Side Public LicenseWebsitewww wbr mongodb wbr com 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 5 1 MongoDB Community Server 6 Bug reports and criticisms 6 1 Security 6 2 Technical criticisms 7 MongoDB Conference 8 See also 9 References 10 Bibliography 11 External linksHistory EditSee also MongoDB Inc 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 5 On October 20 2017 MongoDB became a publicly traded company listed on NASDAQ as MDB with an IPO price of 24 per share 6 MongoDB is a global company with US headquarters in New York City USA and International headquarters in Dublin Ireland On October 30 2019 MongoDB teamed up with Alibaba Cloud who will offer its customers a MongoDB as a service solution Customers can use the managed offering from BABA s global data centers 7 MongoDB release history Version Release date Feature notes Refs1 0 August 2009 8 1 2 December 2009 more indexes per collection faster index creation map reduce stored JavaScript functions configurable fsync time several small features and fixes 9 1 4 March 2010 10 1 6 August 2010 production ready sharding replica sets support for IPv6 11 1 8 March 2011 12 2 0 September 2011 13 2 2 August 2012 14 2 4 March 2013 enhanced geospatial support switch to V8 JavaScript engine security enhancements text search beta hashed index 15 2 6 April 8 2014 aggregation enhancements text search integration query engine improvements new write operation protocol security enhancements 16 3 0 March 3 2015 WiredTiger storage engine support pluggable storage engine API SCRAM SHA 1 authentication improved explain functionality MongoDB Ops Manager 17 3 2 December 8 2015 WiredTiger storage engine by default replication election enhancements config servers as replica sets readConcern document validations moved from V8 to SpiderMonkey 18 3 4 November 29 2016 linearizable read concerns views collation 19 3 6 November 2017 20 4 0 June 2018 transactions 21 4 2 August 2019 22 4 4 July 2020 23 4 4 5 April 2021 24 4 4 6 May 2021 25 5 0 July 13 2021 future proofs versioned API client side field level encryption live resharding time series support 26 27 28 6 0 July 2022 29 Main features EditAd hoc queries Edit MongoDB supports field range query and regular expression searches 30 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 Edit Fields in a MongoDB document can be indexed with primary and secondary indices or index Replication Edit MongoDB provides high availability with replica sets 31 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 If the replicated MongoDB deployment only has a single secondary member a separate daemon called an arbiter must be added to the set It has a single responsibility which is to resolve the election of the new primary 32 As a consequence an idealized distributed MongoDB deployment requires at least three separate servers even in the case of just one primary and one secondary 32 Load balancing Edit MongoDB scales horizontally using sharding 33 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 Edit 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 34 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 35 and lighttpd 36 GridFS divides a file into parts or chunks and stores each of those chunks as a separate document 37 Aggregation Edit MongoDB provides three ways to perform aggregation the aggregation pipeline the map reduce function and single purpose aggregation methods 38 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 39 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 collections as well as statistical operators such as standard deviation Server side JavaScript execution Edit JavaScript can be used in queries aggregation functions such as MapReduce and sent directly to the database to be executed Capped collections Edit 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 Edit MongoDB claims to support multi document ACID transactions since the 4 0 release in June 2018 40 This claim was found to not be true as MongoDB violates snapshot isolation 41 Editions EditMongoDB Community Server Edit The MongoDB Community Edition is free and available for Windows Linux and macOS 42 MongoDB Enterprise Server Edit MongoDB Enterprise Server is the commercial edition of MongoDB and is available as part of the MongoDB Enterprise Advanced subscription 43 MongoDB Atlas Edit MongoDB is also available as an on demand fully managed service MongoDB Atlas runs on AWS Microsoft Azure and Google Cloud Platform 44 On March 10 2022 MongoDB warned its users in Russia and Belarus that their data stored on the MongoDB Atlas platform will be destroyed due to U S sanctions over the war in Ukraine 45 Architecture EditProgramming language accessibility Edit MongoDB has official drivers for major programming languages and development environments 46 There are also a large number of unofficial or community supported drivers for other programming languages and frameworks Serverless access Edit Management and graphical front ends Edit 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 47 Licensing EditMongoDB Community Server Edit As of October 2018 MongoDB is released under the Server Side Public License SSPL a non free 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 insofar that a user would be able to recreate the service themselves available under this license By contrast the AGPL only requires the source code of the licensed software to be provided to users when the software is conveyed over a network 48 49 The SSPL was submitted for certification to the Open Source Initiative but later withdrawn 50 In January 2021 the Open Source Initiative stated that SSPL is not an open source license 51 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 removed 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 52 53 Bug reports and criticisms EditSecurity Edit 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 54 55 In September 2017 updated January 2018 in an official response Davi Ottenheimer lead Product Security at MongoDB proclaimed that measures have been taken by MongoDB to defend against these risks 56 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 57 Technical criticisms Edit 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 58 This issue was addressed since version 3 4 0 released in November 2016 59 and back ported to v3 2 12 60 Before version 2 2 locks were implemented on a per server process basis With version 2 2 locks were implemented at the database level 61 Since version 3 0 62 pluggable storage engines were introduced and each storage engine may implement locks differently 62 With MongoDB 3 0 locks are implemented at the collection level for the MMAPv1 storage engine 63 while the WiredTiger storage engine uses an optimistic concurrency protocol that effectively provides document level locking 64 Even with versions prior to 3 0 one approach to increase concurrency is to use sharding 65 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 66 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 Prior to MongoDB 4 0 queries against an index were not atomic Documents which were being updated while the query was running could be missed 67 The introduction of the snapshot read concern in MongoDB 4 0 eliminated this phenomenon 68 Although MongoDB claims in an undated article entitled MongoDB and Jepsen 69 that their database passed Distributed Systems Safety Research company Jepsen s tests which it called the industry s toughest data safety correctness and consistency Tests Jepsen published an article in May 2020 stating that MongoDB 3 6 4 had in fact failed their tests and that the newer MongoDB 4 2 6 has more problems including retrocausal transactions where a transaction reverses order so that a read can see the result of a future write 70 71 Jepsen noted in their report that MongoDB omitted any mention of these findings on MongoDB s MongoDB and Jepsen page MongoDB Conference EditMongoDB Inc hosts an annual developer conference which has been referred to as either MongoDB World or MongoDB live 72 Year Dates City Venue Notes2014 73 June 23 25 New York Sheraton Times Square Hotel2015 74 June 1 2 New York Sheraton Times Square Hotel2016 75 June 28 29 New York New York Hilton Midtown2017 76 June 20 21 Chicago Hyatt Regency Chicago First year not in New York City2018 77 June 26 27 New York New York Hilton Midtown2019 78 June 17 19 New York New York Hilton Midtown2020 79 May 4 6 Online In person event cancelled and conference held entirely online due to the COVID 19 pandemic2021 80 July 13 14 Online Conference held online due to the COVID 19 pandemic2022 81 June 7 9 New York Javitz CenterSee also Edit Free and open source software portalApache Cassandra BSON the binary JSON format MongoDB uses for data storage and transfer List of server side JavaScript implementations MEAN a solutions stack using MongoDB as the database Server side scripting Amazon DocumentDB a proprietary database service designed for MongoDB compatibility Azure Cosmos DB a proprietary database service suite designed for multi database compatibility including MongoDB References Edit State of MongoDB March 2010 DB Engines Archived from the original on September 18 2017 Retrieved July 5 2017 Release Notes for MongoDB 6 0 August 19 2022 Retrieved August 23 2022 How to Set Up a MongoDB NoSQL Cluster Using Oracle Solaris Zones Oracle Archived from the original on August 12 2017 Retrieved July 5 2017 How To MongoDB on FreeBSD 10 x FreeBSD News Archived from the original on December 28 2017 Retrieved July 5 2017 10gen embraces what it created becomes MongoDB Inc Gigaom Archived from the original on March 5 2016 Retrieved January 29 2016 Witkowski Wallace October 21 2017 MongoDB shares rally 34 in first day of trading above elevated IPO price MarketWatch Dow Jones Archived from the original on February 26 2018 Retrieved February 26 2018 Betz Brandy October 30 2019 MongoDB teams with Alibaba Cloud Seeking Alpha Retrieved October 31 2019 1 0 GA Released MongoDB Blog MongoDB Retrieved May 19 2022 Release Notes for MongoDB 1 2 x mongodb com Release Notes for MongoDB 1 4 mongodb com Release Notes for MongoDB 1 6 mongodb com Release Notes for MongoDB 1 8 mongodb com Release Notes for MongoDB 2 0 mongodb com Release Notes for MongoDB 2 2 mongodb com Release Notes for MongoDB 2 4 mongodb com Release Notes for MongoDB 2 6 mongodb com Release Notes for MongoDB 3 0 mongodb com Release Notes for MongoDB 3 2 mongodb com Release Notes for MongoDB 3 4 mongodb com Release Notes for MongoDB 3 6 mongodb com Release Notes for MongoDB 4 0 mongodb com Release Notes for MongoDB 4 2 mongodb com Release Notes for MongoDB 4 4 mongodb com Release Notes for MongoDB 4 4 mongodb com Release Notes for MongoDB 4 4 mongodb com Release Notes for MongoDB 5 0 mongodb com Press Cover for MongoDB 5 0 hostadvice com MongoDB 5 0 White Paper mongodb com MongoDB 6 0 Released mongodb com Davis Kerby Why MongoDB is the way to go DZone Archived from the original on June 12 2018 Retrieved July 6 2017 Ridiculously fast MongoDB replica recovery Part 1 of 2 ClusterHQ Archived from the original on October 30 2017 a b MongoDB docs Replica Set Arbiter Retrieved April 9 2021 Turning MongoDB Replica Set to a Sharded Cluster Severalnines May 11 2013 Archived from the original on November 25 2016 GridFS amp MongoDB Pros amp Cons Compose June 5 2014 Archived from the original on September 10 2017 NGINX plugin for MongoDB source code GitHub Archived from the original on April 11 2016 Retrieved September 10 2016 lighttpd plugin for MongoDB source code Bitbucket Archived from the original on August 7 2011 Retrieved June 28 2010 Malick Md MongoDB overview Expertstown Archived from the original on March 5 2014 Retrieved February 27 2014 Aggregation MongoDB Manual docs mongodb com Archived from the original on November 29 2018 Retrieved August 14 2018 Map Reduce MongoDB Manual docs mongodb com Archived from the original on August 14 2018 Retrieved August 14 2018 MongoDB Drives NoSQL More Deeply into Enterprise Opportunities June 27 2018 Archived from the original on August 7 2018 Retrieved August 7 2018 MongoDB 4 2 6 MongoDB Download Center MongoDB Archived from the original on August 14 2018 Retrieved August 14 2018 MongoDB Download Center MongoDB Archived from the original on August 14 2018 Retrieved August 14 2018 MongoDB launches Global Clusters to put geographic data control within reach of anyone MongoDB Archived from the original on June 27 2018 Retrieved June 27 2018 MongoDB will destroy all data of Russians and Belarusians MongoDB GitHub mongodb mongo GitHub Archived from the original on July 29 2017 Retrieved July 6 2017 Ma Jason Visualizing Your Data With MongoDB Compass Dzone Dzone com Archived from the original on May 22 2018 Retrieved July 6 2017 Baer Tony It s MongoDB s turn to change its open source license ZDNet Archived from the original on October 31 2018 Retrieved October 16 2018 MongoDB switches up its open source license TechCrunch Archived from the original on October 16 2018 Retrieved October 16 2018 Staff Ars October 16 2019 In 2019 multiple open source companies changed course is it the right move Ars Technica OSI January 19 2021 The SSPL is Not an Open Source License OSI Archived from the original on August 20 2022 Retrieved August 20 2022 Vaughan Nichols Steven J MongoDB open source Server Side Public License rejected ZDNet Archived from the original on January 16 2019 Retrieved January 17 2019 MongoDB s licensing changes led Red Hat to drop the database from the latest version of its server OS GeekWire January 16 2019 Archived from the original on January 17 2019 Retrieved January 17 2019 Krebs Brian Extortionists Wipe Thousands of Databases Victims Who Pay Up Get Stiffed krebsonsecurity com Brian Krebs Archived from the original on January 11 2017 Retrieved January 11 2017 Constantin Lucian January 6 2017 Ransomware groups have deleted over 10 000 MongoDB databases Computer World IDG Archived from the original on January 10 2017 Retrieved January 11 2017 Ottenheimer Davi How to Avoid a Malicious Attack That Ransoms Your Data www mongodb com Retrieved June 22 2021 MongoDB Bind IP Compatibility MongoDB MongoDB Archived from the original on March 6 2019 Retrieved March 5 2019 Kyle Kingsbury April 20 2015 Call me maybe MongoDB stale reads Archived from the original on August 15 2015 Retrieved July 4 2015 Release Notes for MongoDB 3 4 MongoDB Manual Archived from the original on August 14 2018 Retrieved April 6 2018 Kingsbury Kyle February 7 2017 MongoDB 3 4 0 rc3 Jepsen Archived from the original on October 23 2017 Atomicity isolation amp concurrency in MongoDB scalegrid io Archived from the original on September 10 2017 Retrieved June 28 2017 a b MongoDB Goes Pluggable with Storage Engines datanami com March 5 2015 Archived from the original on July 4 2017 Retrieved June 28 2017 Arborian Consulting MongoDB MMAPv1 WiredTiger Locking and Queues Arborian Consulting Archived from the original on June 19 2017 Retrieved June 28 2017 Kenny Gorman October 2015 MongoDB 3 0 WiredTiger Compression and Performance Objectrocket com Archived from the original on June 16 2017 Retrieved June 28 2017 Mikita Manko MongoDB performance bottlenecks optimization Strategies for MongoDB mikitamanko com Archived from the original on July 19 2017 Retrieved July 5 2017 scalegrid io September 12 2013 Atomicity isolation amp concurrency in MongoDB scalegrid io Archived from the original on September 10 2017 Retrieved July 5 2017 Glasser David June 7 2016 MongoDB queries don t always return all matching documents Meteor Blog MongoDB Docs Archived from the original on March 6 2019 Retrieved March 5 2019 MongoDB and Jepsen MongoDB Allen Jonathan May 22 2020 Jepsen Disputes MongoDB s Data Consistency Claims InfoQ Kingsbury Kyle May 15 2020 MongoDB 4 2 6 Jepsen io MongoDB World www mongodb com Archived from the original on April 26 2019 Retrieved April 10 2019 Mongo 2014 Announcement MongoDB Mongo 2015 Announcement MongoDB Mongo 2016 Announcement MongoDB Mongo 2017 Announcement icrunchdata Mongo 2018 Retrospective KenWalger July 7 2018 Mongo 2019 Sneak Peek MongoDB Mongo 2020 event Eventil MongoDB live Returns this Summer MongoDB MongoDB World 2022 MongoDB Bibliography EditBanker 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 9External links EditOfficial website Retrieved from https en wikipedia org w index php title MongoDB amp oldid 1148183474, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.