HiddenShardedCollection
说明
HiddenShardedCollection
在
config.collections
集群目录中一个不存在的数据库下注册了一个集合。7.0 版本中的新增功能。
format
{ type: "HiddenShardedCollection", description: "<string>", details: { namespace: "<string>", collection: "<object>", } }
HiddenShardedCollection
不一致文档包含以下字段:
字段 | 类型 | 说明 |
---|---|---|
type | 字符串 | 不一致文档的类型。 为此不一致类型返回值 |
description | 字符串 | 描述元数据中发现的不一致的性质。 |
details | 文档 | 包含有关数据库和分片集群中哪些位置存在不一致的附加信息的文档。 |
details.namespace | 字符串 | 指示存在不一致的数据库和collection。 |
details.collection | 文档 | 有关集合的信息。 |
例子
使用db.adminCommand()
方法调用checkMetadataConsistency
命令:
db.adminCommand( { checkMetadataConsistency: 1 } )
该方法返回一个游标,其中包含一批文档,显示分片元数据中发现的不一致。 以下示例显示了带有HiddenShardedCollection
不一致文档的游标:
{ cursor: { id: Long("0"), ns: "test.$cmd.aggregate", firstBatch: [ { type: "HiddenShardedCollection", description: "Found sharded collection but relative database does not exist", details: { namespace: "test.authors", collection: { _id: "test.authors", lastmodEpoch: ObjectId("64ddd78de906038182671674"), lastmod: ISODate("2023-08-17T08:17:17.944Z"), timestamp: Timestamp(1692260237, 58), uuid: new UUID("69317741-7bc5-4eca-8877-7858cecf67d6"), key: { "skey" : 1 }, unique: false, noBalance: false } } } ], }, ok: 1 }