dropIndexes
Synopsis
dropIndexes
6.0 版本中的新功能。
当从集合中删除索引并且变更流将 showExpandedEvents选项设立为
true
时,会发生dropIndexes
事件。
描述
字段 | 类型 | 说明 |
---|---|---|
| 文档 | |
| 时间戳 | |
| UUID | 标识发生更改的集合的 UUID。 6.0 版本中的新功能。 |
| 文档 | 与事务关联的会话标识符。 只有当操作是多文档事务的一部分时才会出现。 |
| 文档 | 受事件影响的命名空间(数据库和/或集合)。 |
| 字符串 | 发生事件的数据库的名称。 |
| 字符串 | 发生事件的集合的名称。 |
| 文档 | |
operationDescription. indexes | 阵列 | 列出操作删除的索引的文档数组。 6.0 版本中的新功能。 |
| 字符串 | 变更通知报告的操作类型。 为这些变更事件返回 |
| NumberLong | |
| 数据库操作的服务器日期和时间。 6.0 版本中的新功能。 |
例子
以下示例说明了 dropIndexes
事件:
{ "_id": { <ResumeToken> }, "operationType": "dropIndexes", "clusterTime": <Timestamp> "collectionUUID": <uuid>, "wallTime": <isodate>, "ns": { "db": "test", "coll": "authors" }, "operationDescription": { "indexes": [ { "v": 2, "key": { "name": 1 }, "name": "name_1" } ] } }