区域范围重叠
说明
format
{ type: "ZonesRangeOverlap", description: "<string>", details: { namespace: "<string>", collectionUUID: <string>, zoneA: {<document>}, zoneB: {<document>} } }
ZonesRangeOverlap
不一致文档包含以下字段:
字段 | 类型 | 说明 |
---|---|---|
type | 字符串 | 不一致文档的类型。 为此不一致类型返回值 |
description | 字符串 | 描述在元数据中发现的不一致之处。 |
details | 文档 | 包含有关数据库和分片集群中哪些位置存在不一致的附加信息的文档。 |
details.namespace | 字符串 | 指示存在不一致的数据库和collection。 |
details.collectionUUID | UUID | 集合的 UUID。 |
details.zoneA | 文档 | 与第二个区域重叠的第一个区域。 |
details.zoneB | 文档 | 与第一个区域重叠的第二个区域。 |
例子
使用 db.adminCommand()
方法调用checkMetadataConsistency
命令:
db.adminCommand( { checkMetadataConsistency: 1 } )
该方法返回一个游标,其中包含一批文档,显示分片元数据中发现的不一致。 以下示例显示了带有ZonesRangeOverlap
不一致文档的游标:
{ cursor: { id: Long("0"), ns: "test.$cmd.aggregate", firstBatch: [ { type: "ZonesRangeOverlap", description: "Found two overlapping zones", details: { namespace: "test.authors", collectionUUID: new UUID("62ebdb7e-a7bb-4151-a620-49d44cef097f"), zoneA: { ns: "test.authors", tag: "64ddec77e0d32b766bb8d5fe", min: { x: MinKey }, max: { x: 0 } }, zoneB: { ns: "test.authors", tag: "64ddec77e0d32b766bb8d5ff", min: { x: -10 }, max: { x: MaxKey } } } } ], }, ok: 1 }