planCacheListQueryShapes

Definition

  • planCacheListQueryShapes

Deprecated since version 4.2.

Note

MongoDB 4.2 adds a new aggregation pipeline stage$planCacheStats that provides plan cache information for a collection.

The $planCacheStats aggregation stage is preferred overthe following methods and commands, which have been deprecated in 4.2:

Displays the query shapes for which cachedquery plans exist for a collection.

To help identify slow queries with the same query shape,starting in MongoDB 4.2, each query shape is associated witha queryHash. The queryHash is ahexadecimal string that represents a hash of the query shape andis dependent only on the query shape.

Note

As with any hash function, two different query shapes may resultin the same hash value. However, the occurrence of hashcollisions between different query shapes is unlikely.

The query optimizer only caches the plans for those query shapes thatcan have more than one viable plan.

The mongo shell provides the wrapperPlanCache.listQueryShapes() for this command.

The command has the following syntax:

  1. db.runCommand(
  2. {
  3. planCacheListQueryShapes: <collection>
  4. }
  5. )

The planCacheListQueryShapes command has the following field:

FieldTypeDescriptionplanCacheListQueryShapesstringThe name of the collection.

Returns:A document that contains an array of query shapes for which cached query plans exist.

Required Access

On systems running with authorization, a user must have access thatincludes the planCacheRead action.

Example

The following returns the query shapes that havecached plans for the orders collection:

  1. db.runCommand(
  2. {
  3. planCacheListQueryShapes: "orders"
  4. }
  5. )

The command returns a document that contains the field shapes thatcontains an array of the query shapes currentlyin the cache. In the example, the orders collection had cachedquery plans associated with the following shapes:

  1. {
  2. "shapes" : [
  3. {
  4. "query" : { "qty" : { "$gt" : 10 } },
  5. "sort" : { "ord_date" : 1 },
  6. "projection" : { },
  7. "queryHash" : "9AAD95BE" // Available starting in MongoDB 4.2
  8. },
  9. {
  10. "query" : { "$or" : [ { "qty" : { "$gt" : 15 } }, { "status" : "A" } ] },
  11. "sort" : { },
  12. "projection" : { }
  13. },
  14. {
  15. "query" : { "$or" :
  16. [
  17. { "qty" : { "$gt" : 15 }, "item" : "xyz123" },
  18. { "status" : "A" }
  19. ]
  20. },
  21. "sort" : { },
  22. "projection" : { },
  23. "queryHash" : "0A087AD0" // Available starting in MongoDB 4.2
  24. }
  25. ],
  26. "ok" : 1
  27. }

See also