planCacheListPlans

Definition

  • planCacheListPlans

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 cached query plans for the specified queryshape.

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.getPlansByQuery() for this command.

The planCacheListPlans command has the following syntax:

  1. db.runCommand(
  2. {
  3. planCacheListPlans: <collection>,
  4. query: <query>,
  5. sort: <sort>,
  6. projection: <projection>
  7. }

The planCacheListPlans command has the following field:

FieldTypeDescriptionquerydocumentThe query predicate of the query shape. Only the structureof the predicate, including the field names, are significant to theshape; the values in the query predicate are insignificant.projectiondocumentOptional. The projection associated with the query shape.sortdocumentOptional. The sort associated with the query shape.

To see the query shapes for which cached query plans exist, seeList Query Shapes.

The planCacheListPlans database command returns thesame output as the PlanCache.getPlansByQuery() method.

Required Access

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

Example

If a collection orders has the following query shape:

  1. {
  2. "query" : { "qty" : { "$gt" : 10 } },
  3. "sort" : { "ord_date" : 1 },
  4. "projection" : { },
  5. "queryHash" : "9AAD95BE" // Available starting in MongoDB 4.2
  6. }

The following operation displays the query plan cached for the shape:

  1. db.runCommand(
  2. {
  3. planCacheListPlans: "orders",
  4. query: { "qty" : { "$gt" : 10 } },
  5. sort: { "ord_date" : 1 }
  6. }
  7. )

See also