分布式NoSQL数据库,MongoDB 3.2.0-rc2 发布

jopen 8年前

MongoDB是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。他支持的数据结构非常松散,是类似json的bjson格式,因此可以存储比较复杂的数据类型。Mongo最大的特点是他支持的查询语言非常强大,其语法有点类似于面向对象的查询语言,几乎可以实现类似关系数据库单表查询的绝大部分功能,而且还支持对数据建立索引。

它的特点是高性能、易部署、易使用,存储数据非常方便。主要功能特性有:

  • 面向集合存储,易存储对象类型的数据。

  • 模式自由。

  • 支持动态查询。

  • 支持完全索引,包含内部对象。

  • 支持查询。

  • 支持复制和故障恢复。

  • 使用高效的二进制数据存储,包括大型对象(如视频等)。

  • 自动处理碎片,以支持云计算层次的扩展性

  • 支持RUBY,PYTHON,JAVA,C++,PHP等多种语言。

  • 文件存储格式为BSON(一种JSON的扩展)

  • 可通过网络访问

MongoDB 3.2.0-rc2 发布,此版本主要改进:

  • SERVER-19095   $lookup

  • SERVER-20152   Lock SymmetricKey data pointer to avoid swapping

  • SERVER-20858   Invariant failure in OplogStones for non-capped oplog creation

  • SERVER-20901   Make LockPinging test in replset_dist_lock_manager_test robust to cv spurious wake ups

  • SERVER-20969   Enforce restriction that $indexStats is the first pipeline stage

  • SERVER-20977   improve code coverage of db/repl in unit test suite

  • SERVER-20979   add replication test commands to support failover time performance testing

  • SERVER-21102   Add more basic tests for split and auto split

  • SERVER-21109   Add test for balancer active window

  • SERVER-21150   Basic startup logging should be done as early as possible in initAndListen

  • SERVER-21169   Make all CSRS config server reads retry on notMaster and network errors

  • SERVER-21224   Use “git describe” instead of version.json to set release version

  • TOOLS-860      Add test coverage for intersection of tools and document validation

  • TOOLS-937      Run legacy and js tests against latest release

3.2 发行说明 | 下载 | issues 列表


来自:http://www.oschina.net/news/67774/mongodb-3-2-0-rc2