Azure Cosmos DB for MongoDB(版本 3.2):支持的功能和语法

适用对象: MongoDB

Azure Cosmos DB 是世纪互联提供的多区域分布式多模型数据库服务。 可通过任何开放源代码 MongoDB 客户端驱动程序与 Azure Cosmos DB for MongoDB 进行通信。 可以按照 MongoDB 线路协议规定,通过 Azure Cosmos DB for MongoDB 来使用现有客户端驱动程序。

通过使用 Azure Cosmos DB for MongoDB,可以像以往一样从 MongoDB 中受益,并且可使用 Azure Cosmos DB 提供的所有企业功能:多区域分布自动分片、可用性和延迟保证、自动编制每个字段的索引、静态加密和备份等。

注意

Azure Cosmos DB for MongoDB 3.2 版目前没有生命周期终止 (EOL) 计划。 未来 EOL 的最短期限是 3 年。

协议支持

Azure Cosmos DB for MongoDB 的所有新帐户都与 MongoDB 服务器版本 3.6 兼容。 本文介绍 MongoDB 版本 3.2。 支持的运算符以及限制或例外已列在下面。 任何理解这些协议的客户端驱动程序应该都能够连接到 Azure Cosmos DB for MongoDB。

Azure Cosmos DB for MongoDB 还为符合条件的帐户提供无缝升级体验。 有关详细信息,请参阅 MongoDB 版本升级指南

查询语言支持

Azure Cosmos DB for MongoDB 全面支持 MongoDB 查询语言构造。 可以在下面查找当前支持的操作、运算符、阶段、命令和选项的详细列表。

数据库命令

Azure Cosmos DB for MongoDB 支持以下数据库命令:

注意

本文仅列出受支持的服务器命令,并排除客户端包装器函数。 客户端包装器函数(如 deleteMany()updateMany())在内部利用 delete()update() 服务器命令。 利用受支持的服务器命令的函数与 Azure Cosmos DB for MongoDB 兼容。

查询和写入操作命令

  • delete
  • find
  • findAndModify
  • getLastError
  • getMore
  • insert
  • update

身份验证命令

  • logout
  • authenticate
  • getnonce

管理命令

  • dropDatabase
  • listCollections
  • drop
  • create
  • filemd5
  • createIndexes
  • listIndexes
  • dropIndexes
  • connectionStatus
  • reIndex

诊断命令

  • buildInfo
  • collStats
  • dbStats
  • hostInfo
  • listDatabases
  • whatsmyuri

聚合管道

聚合命令

  • aggregate
  • count
  • distinct

聚合阶段

  • $project
  • $match
  • $limit
  • $skip
  • $unwind
  • $group
  • $sample
  • $sort
  • $lookup
  • $out
  • $count
  • $addFields

聚合表达式

布尔表达式

  • $and
  • $or
  • $not

集表达式

  • $setEquals
  • $setIntersection
  • $setUnion
  • $setDifference
  • $setIsSubset
  • $anyElementTrue
  • $allElementsTrue

比较表达式

  • $cmp
  • $eq
  • $gt
  • $gte
  • $lt
  • $lte
  • $ne

算术表达式

  • $abs
  • $add
  • $ceil
  • $divide
  • $exp
  • $floor
  • $ln
  • $log
  • $log10
  • $mod
  • $multiply
  • $pow
  • $sqrt
  • $subtract
  • $trunc

字符串表达式

  • $concat
  • $indexOfBytes
  • $indexOfCP
  • $split
  • $strLenBytes
  • $strLenCP
  • $strcasecmp
  • $substr
  • $substrBytes
  • $substrCP
  • $toLower
  • $toUpper

数组表达式

  • $arrayElemAt
  • $concatArrays
  • $filter
  • $indexOfArray
  • $isArray
  • $range
  • $reverseArray
  • $size
  • $slice
  • $in

日期表达式

  • $dayOfYear
  • $dayOfMonth
  • $dayOfWeek
  • $year
  • $month
  • $week
  • $hour
  • $minute
  • $second
  • $millisecond
  • $isoDayOfWeek
  • $isoWeek

条件表达式

  • $cond
  • $ifNull

聚合累加器

  • $sum
  • $avg
  • $first
  • $last
  • $max
  • $min
  • $push
  • $addToSet

运算符

以下运算符在其相应的使用示例中受支持。 请考虑下面的查询中使用的示例文档:

{
  "Volcano Name": "Rainier",
  "Country": "United States",
  "Region": "US-Washington",
  "Location": {
    "type": "Point",
    "coordinates": [
      -121.758,
      46.87
    ]
  },
  "Elevation": 4392,
  "Type": "Stratovolcano",
  "Status": "Dendrochronology",
  "Last Known Eruption": "Last known eruption from 1800-1899, inclusive"
}
运算符 示例
eq { "Volcano Name": { $eq: "Rainier" } }
gt { "Elevation": { $gt: 4000 } }
gte { "Elevation": { $gte: 4392 } }
lt { "Elevation": { $lt: 5000 } }
lte { "Elevation": { $lte: 5000 } }
ne { "Elevation": { $ne: 1 } }
in { "Volcano Name": { $in: ["St. Helens", "Rainier", "Glacier Peak"] } }
nin { "Volcano Name": { $nin: ["Lassen Peak", "Hood", "Baker"] } }
or { $or: [ { Elevation: { $lt: 4000 } }, { "Volcano Name": "Rainier" } ] }
and { $and: [ { Elevation: { $gt: 4000 } }, { "Volcano Name": "Rainier" } ] }
not { "Elevation": { $not: { $gt: 5000 } } }
nor { $nor: [ { "Elevation": { $lt: 4000 } }, { "Volcano Name": "Baker" } ] }
exists { "Status": { $exists: true } }
type { "Status": { $type: "string" } }
mod { "Elevation": { $mod: [ 4, 0 ] } }
regex { "Volcano Name": { $regex: "^Rain"} }

说明

在 $regex 查询中,左定位表达式允许索引搜索。 但是,使用“i”修饰符(不区分大小写)和“m”修饰符(多行)会导致在所有表达式中进行回收集合扫描。 当需要包含“$”或“|”时,最好创建两个(或更多)正则表达式查询。 例如,给定以下原始查询:find({x:{$regex: /^abc$/}),必须按如下所示进行修改:find({x:{$regex: /^abc/, x:{$regex:/^abc$/}})。 第一部分将使用索引将搜索限制为以 ^ abc 开头的文档,第二部分将匹配确切的条目。 竖条运算符“|”充当“or”函数 - 查询 find({x:{$regex: /^abc|^def/}) 匹配字段“x”的值以“abc”或“def”开头的文档。 要使用索引,建议将查询分解为两个由 $or 运算符连接的不同查询:find( {$or : [{x: $regex: /^abc/}, {$regex: /^def/}] })

更新运算符

字段更新运算符

  • $inc
  • $mul
  • $rename
  • $setOnInsert
  • $set
  • $unset
  • $min
  • $max
  • $currentDate

数组更新运算符

  • $addToSet
  • $pop
  • $pullAll
  • $pull(注意:不支持有条件的 $pull)
  • $pushAll
  • $push
  • $each
  • $slice
  • $sort
  • $position

位更新运算符

  • $bit

地理空间运算符

运算符 示例 支持
$geoWithin { "Location.coordinates": { $geoWithin: { $centerSphere: [ [ -121, 46 ], 5 ] } } }
$geoIntersects { "Location.coordinates": { $geoIntersects: { $geometry: { type: "Polygon", coordinates: [ [ [ -121.9, 46.7 ], [ -121.5, 46.7 ], [ -121.5, 46.9 ], [ -121.9, 46.9 ], [ -121.9, 46.7 ] ] ] } } } }
$near { "Location.coordinates": { $near: { $geometry: { type: "Polygon", coordinates: [ [ [ -121.9, 46.7 ], [ -121.5, 46.7 ], [ -121.5, 46.9 ], [ -121.9, 46.9 ], [ -121.9, 46.7 ] ] ] } } } }
$nearSphere { "Location.coordinates": { $nearSphere : [ -121, 46 ], $maxDistance: 0.50 } }
$geometry { "Location.coordinates": { $geoWithin: { $geometry: { type: "Polygon", coordinates: [ [ [ -121.9, 46.7 ], [ -121.5, 46.7 ], [ -121.5, 46.9 ], [ -121.9, 46.9 ], [ -121.9, 46.7 ] ] ] } } } }
$minDistance { "Location.coordinates": { $nearSphere : { $geometry: {type: "Point", coordinates: [ -121, 46 ]}, $minDistance: 1000, $maxDistance: 1000000 } } }
$maxDistance { "Location.coordinates": { $nearSphere : [ -121, 46 ], $maxDistance: 0.50 } }
$center { "Location.coordinates": { $geoWithin: { $center: [ [-121, 46], 1 ] } } }
$centerSphere { "Location.coordinates": { $geoWithin: { $centerSphere: [ [ -121, 46 ], 5 ] } } }
$box { "Location.coordinates": { $geoWithin: { $box: [ [ 0, 0 ], [ -122, 47 ] ] } } }
$polygon { "Location.coordinates": { $near: { $geometry: { type: "Polygon", coordinates: [ [ [ -121.9, 46.7 ], [ -121.5, 46.7 ], [ -121.5, 46.9 ], [ -121.9, 46.9 ], [ -121.9, 46.7 ] ] ] } } } }

排序操作

使用 findOneAndUpdate 操作时,支持基于单个字段的排序操作,但不支持基于多个字段的排序操作。

其他运算符

运算符 示例 说明
$all { "Location.coordinates": { $all: [-121.758, 46.87] } }
$elemMatch { "Location.coordinates": { $elemMatch: { $lt: 0 } } }
$size { "Location.coordinates": { $size: 2 } }
$comment { "Location.coordinates": { $elemMatch: { $lt: 0 } }, $comment: "Negative values"}
$text 不支持。 改为使用 $regex。

不支持的运算符

$where$eval 运算符不受 Azure Cosmos DB 支持。

方法

支持下列方法:

游标方法

方法 示例 说明
cursor.sort() cursor.sort({ "Elevation": -1 }) 不会返回没有排序键的文档

唯一索引

默认情况下,Azure Cosmos DB 为写入数据库的文档中的每个字段编制索引。 唯一索引确保特定字段在一个集合的所有文档中都不会有重复值,类似于默认 _id 键保持唯一性的方式。 可以在 Azure Cosmos DB 中使用 createIndex 命令(包括“unique”约束)创建自定义索引。

所有使用 Azure Cosmos DB for MongoDB 的 Azure Cosmos DB 帐户都能使用唯一索引。

生存时间 (TTL)

Azure Cosmos DB 支持基于文档时间戳的生存时间 (TTL)。 转到 Azure 门户便可以为集合启用 TTL。

用户和角色管理

Azure Cosmos DB 尚不支持用户和角色。 不过,Azure Cosmos DB 支持 Azure 基于角色的访问控制 (Azure RBAC) 以及读写和只读密码/密钥 - 可通过 Azure 门户(连接字符串页)获取这些内容。

复制

Azure Cosmos DB 支持在最低层进行自动本机复制。 此逻辑还可以扩展,实现低延迟的多区域复制。 Azure Cosmos DB 不支持手动复制命令。

写关注

某些应用程序依赖写关注,后者指定写入操作期间需要的响应数。 考虑到 Azure Cosmos DB 在后台处理复制的方式,所有写入在默认情况下都自动成为仲裁。 由客户端代码指定的任何写关注都会被系统忽略。 有关详细信息,请参阅使用一致性级别最大化可用性和性能

分片

Azure Cosmos DB 支持服务器端自动分片。 它自动管理分片的创建、放置和均衡。 Azure Cosmos DB 不支持手动分片命令,这意味着你不必调用诸如 shardCollection、addShard、balancerStart、moveChunk 等命令。你只需在创建容器或查询数据时指定分片键。

后续步骤

  • 了解如何将 Studio 3T 与 Azure Cosmos DB for MongoDB 配合使用。
  • 了解如何将 Robo 3T 与 Azure Cosmos DB for MongoDB 配合使用。
  • 使用 Azure Cosmos DB for MongoDB 浏览 MongoDB 示例