-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major - P3
-
Affects Version/s: 6.0.0, 7.0.0
-
Component/s: None
-
None
-
Catalog and Routing
-
Fully Compatible
-
ALL
-
v7.1, v7.0, v6.0, v5.0, v4.4
-
-
Execution EMEA Team 2023-10-16, Execution EMEA Team 2023-10-30
-
None
-
None
-
None
-
None
-
None
-
None
-
None
Mongosync uses $listCatalog to list indexes belonging to collections as follows:
stages1 = [{ "$group": { "_id": null, "catalogEntry": { "$push": "$$ROOT" }, "allShards": { "$addToSet": "$shard" } } }, { "$unwind": { "path": "$catalogEntry" } }, { "$unwind": { "path": "$catalogEntry.md.indexes" } }, { "$unset": "catalogEntry.md.indexes.spec.ns" }, { "$match": { "catalogEntry.md.indexes.ready": true } }, { "$set": { "catalogEntry.md.indexes.spec.sparse": { "$cond": { "if": { "$eq": ["missing", { "$type": "$catalogEntry.md.indexes.spec.sparse" }] }, "then": "$$REMOVE", "else": { "$toBool": "$catalogEntry.md.indexes.spec.sparse" } } }, "catalogEntry.md.indexes.spec.expireAfterSeconds": { "$cond": { "if": { "$eq": ["missing", { "$type": "$catalogEntry.md.indexes.spec.expireAfterSeconds" }] }, "then": "$$REMOVE", "else": { "$toInt": "$catalogEntry.md.indexes.spec.expireAfterSeconds" } } }, "catalogEntry.md.indexes.spec.bits": { "$cond": { "if": { "$eq": ["missing", { "$type": "$catalogEntry.md.indexes.spec.bits" }] }, "then": "$$REMOVE", "else": { "$toInt": "$catalogEntry.md.indexes.spec.bits" } } } } }, { "$group": { "_id": "$catalogEntry.md.indexes.spec.name", "shards": { "$push": "$catalogEntry.shard" }, "specs": { "$push": { "$objectToArray": { "$ifNull": [ "$catalogEntry.md.indexes.spec", {}] } } }, "allShards": { "$first": "$allShards" } } }]
stages2 = { "$project": { "numShards": { "$size": "$allShards" }, "missingFromShards": { "$setDifference": [ "$allShards", "$shards"] }, "spec": { "$arrayToObject": { "$first": "$specs" } }, "inconsistentOptions": { "$setDifference": [ { "$reduce": { "input": "$specs", "initialValue": { "$arrayElemAt": [ "$specs", 0] }, "in": { "$setUnion": [ "$$value", "$$this"] } } }, { "$reduce": { "input": "$specs", "initialValue": { "$arrayElemAt": [ "$specs", 0] }, "in": { "$setIntersection": [ "$$value", "$$this"] } } }] } } }res =
db.runCommand({"aggregate": "coll", "collectionUUID": new UUID("85c8ab7b-d107-4768-913e-19f0b107eb2a"), "readConcern": {"level": "majority", "afterClusterTime": Timestamp({ t: 1693905823, i: 20 })}, cursor: {}, pipeline: [{"$listCatalog": {}}].concat(stages1).concat([{"$match": {_id: "x_1"} }]).concat([stages2])})
If the collection gets renamed while the aggregation pipeline is running, Mongosync expects to get a CollectionUUIDMismatch error for the server. That is the behavior for v6.0.8.
In v7.0, the result of the aggregation pipeline is actually empty, which causes Mongosync to incorrectly believe that there is no index on the collection.
- causes
-
SERVER-83108 $listCatalog doesn't respect readConcern
-
- Closed
-