MongoDB 互換の Firestore Enterprise エディションが利用可能になりました。
詳細
Query Explain を使用してクエリ実行を分析する
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
Cloud Firestore Enterprise エディションにのみ関連します。
|
このページでは、クエリを実行するときにクエリ実行情報を取得する方法について説明します。
クエリ Explain を使用する
Query Explain を使用すると、クエリの実行方法を把握できます。これにより、クエリの最適化に使用できる詳細情報が提供されます。
クエリの説明は、Google Cloud コンソールまたは explain
コマンドを使用して取得できます。
Console
クエリエディタでクエリを実行し、[説明] タブを開きます。
-
Google Cloud コンソールで [Database] ページに移動します。
[データベース] に移動
-
データベースのリストから、MongoDB 互換の Cloud Firestore データベースを選択します。Google Cloud コンソールで、そのデータベースの Firestore エクスプローラが開きます。
-
クエリエディタにクエリを入力し、[実行] をクリックします。
-
[説明] タブをクリックして、クエリ分析の出力を表示します。
MongoDB API
MongoDB API のクエリの説明は、Mongo Shell や Compass などのツールで使用できる explain
コマンドでサポートされています。
explain
コマンドは、aggregate
、find
、distinct
、count
コマンドでサポートされています。次に例を示します。
db.collection.explain.find(...)
explain()
メソッドを使用することもできます。
db.collection.find({QUERY}).explain()
制限事項
次の制限事項と相違点に注意してください。
-
Query Explain は、カーソルを返すコマンドをサポートしていません。たとえば、次のコマンドを直接呼び出して Explain を呼び出すことはサポートされていません。
db.collection.aggregate(..., explain: true)
クエリの説明は、find
、aggregate
、count
、distinct
コマンドでのみサポートされています。
-
MongoDB API では、Query Explain の Verbosity
オプションと Comment
オプションはサポートされていません。この動作は executionStats
オプションと一致します。allPlansExecution
オプションと queryPlanner
オプションは、指定されても無視されます。
分析
Query Explain の出力には、概要統計情報と実行ツリーの 2 つの主要コンポーネントが含まれています。次のクエリを例に考えます。
db.order.aggregate(
[
{ "$match": { "user_id": 1234 } },
{ "$sort": { "date_placed": 1 } }
]
)
概要データ
説明付き出力の上部には、実行統計の概要が表示されます。これらの統計情報を使用して、クエリのレイテンシやコストが高いかどうかを判断します。また、クエリがメモリ上限にどの程度近づいているかを示すメモリ統計情報も含まれています。
Billing Metrics:
read units: 1
Execution Metrics:
request peak memory usage: 4.00 KiB (4,096 B)
results returned: 1
実行ツリー
実行ツリーは、クエリの実行を一連のノードとして記述します。最下部のノード(リーフノード)は、ストレージ レイヤからデータを取得し、ツリーを上方向にトラバースしてクエリ レスポンスを生成します。
各実行ノードの詳細については、実行リファレンスをご覧ください。
この情報を使用してクエリを最適化する方法については、クエリの実行を最適化するをご覧ください。
実行ツリーの例を次に示します。
• Compute
| $out_1: map_set($record_1, "__id__", $__id___1, "__key__", $__key___1, "__row_id__", $__row_id___1, "__$0__", $__$0___2)
| is query result: true
|
| Execution:
| records returned: 1
|
└── • Compute
| $__$0___2: UNSET
|
| Execution:
| records returned: 1
|
└── • Compute
| $__key___1: UNSET
| $__row_id___1: UNSET
|
| Execution:
| records returned: 1
|
└── • Compute
| $__id___1: _id($record_1.__key__)
|
| Execution:
| records returned: 1
|
└── • MajorSort
| fields: [$v_5 ASC]
| output: [$record_1]
|
| Execution:
| records returned: 1
| peak memory usage: 4.00 KiB (4,096 B)
|
└── • Compute
| $v_5: array_get($v_4, 0L)
|
| Execution:
| records returned: 1
|
└── • Compute
| $v_4: sortPaths(array($record_1.date_placed), [date_placed ASC])
|
| Execution:
| records returned: 1
|
└── • Filter
| expression: $eq($user_id_1, 1,234)
|
| Execution:
| records returned: 1
|
└── • TableScan
source: **/my_collection
order: STABLE
properties: * - { __create_time__, __update_time__ }
output record: $record_1
output bindings: {$user_id_1=user_id}
variables: [$record_1, $user_id_1]
Execution:
records returned: 1
records scanned: 1
次のステップ
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-08-29 UTC。
[null,null,["最終更新日 2025-08-29 UTC。"],[],[],null,["\u003cbr /\u003e\n\n\n|--------------------------------------------------------|\n| *Relevant to Cloud Firestore Enterprise edition only.* |\n\n\u003cbr /\u003e\n\nThis page describes how to retrieve query execution information when you execute a query.\n\nUse Query Explain\n\nYou can use Query Explain to understand how your queries are being executed.\nThis provides details that you can use to [optimize your queries](/docs/firestore/enterprise/optimize-query-performance).\n\nYou can use Query Explain through the Google Cloud console or the `explain` command. \n\nConsole\n\nExecute a query in the Query Editor and open the **Explanation** tab:\n\n1. In the Google Cloud console, go to the **Databases** page.\n\n [Go to Databases](https://console.cloud.google.com/firestore/databases)\n2. From the list of databases, select a Cloud Firestore with MongoDB compatibility database. The Google Cloud console opens the **Firestore Explorer** for that database.\n3. Enter a query in the query editor and click **Run**.\n4. Click the **Explanation** tab to view the query analysis output.\n\nMongoDB API\n\nQuery Explain in the MongoDB API is supported through the\n[`explain`](https://www.mongodb.com/docs/manual/reference/command/explain/)\ncommand which you can use in tools such as Mongo Shell and Compass.\n\n\nThe `explain` command is supported with the `aggregate`,\n`find`, `distinct`, and `count`\ncommands, for example: \n\n```text\ndb.collection.explain.find(...)\n```\n\n\nYou can also use the `explain()` method, for example: \n\n```text\ndb.collection.find({QUERY}).explain()\n```\n\nLimitations Note the following limitations and differences:\n\n- Query Explain does not support commands which return a cursor. For example,\n invoking explain by calling the following command directly is not supported:\n\n ```verilog\n db.collection.aggregate(..., explain: true)\n ```\n- Query Explain is only supported on the\n `find`, `aggregate`, `count`, and `distinct`\n commands.\n\n- The `Verbosity` and `Comment` options of Query Explain\n are not supported through the MongoDB API. The behaviour matches the\n `executionStats` option. The `allPlansExecution` and\n `queryPlanner` options are ignored if provided.\n\nAnalysis\n\nThe output of Query Explain contains two main components-the Summary Statistics and Execution Tree.\nConsider this query as an example: \n\n db.order.aggregate(\n [\n { \"$match\": { \"user_id\": 1234 } },\n { \"$sort\": { \"date_placed\": 1 } }\n ]\n )\n\nSummary Statistics\n\nThe top of the explained output contains a summary of the execution statistics.\nUse these statistics to determine if a query has high latency or cost. It also\ncontains memory statistics which let you know how close your query is\nto [memory limits](/docs/firestore/enterprise/quotas). \n\n Billing Metrics:\n read units: 1\n\n Execution Metrics:\n request peak memory usage: 4.00 KiB (4,096 B)\n results returned: 1\n\nExecution Tree\n\nThe execution tree describes the query execution as a series of nodes. The\nbottom nodes (leaf nodes) retrieve data from the storage layer which traverses\nup the tree to generate a query response.\n\nFor details about each execution node,\nrefer to the [Execution reference](/docs/firestore/enterprise/query-explain-reference).\n\nFor details on how to use this information to optimize your queries,\nsee [Optimize query execution](/docs/firestore/enterprise/optimize-query-performance).\n\nThe following is an example of an execution tree: \n\n • Compute\n | $out_1: map_set($record_1, \"__id__\", $__id___1, \"__key__\", $__key___1, \"__row_id__\", $__row_id___1, \"__$0__\", $__$0___2)\n | is query result: true\n |\n | Execution:\n | records returned: 1\n |\n └── • Compute\n | $__$0___2: UNSET\n |\n | Execution:\n | records returned: 1\n |\n └── • Compute\n | $__key___1: UNSET\n | $__row_id___1: UNSET\n |\n | Execution:\n | records returned: 1\n |\n └── • Compute\n | $__id___1: _id($record_1.__key__)\n |\n | Execution:\n | records returned: 1\n |\n └── • MajorSort\n | fields: [$v_5 ASC]\n | output: [$record_1]\n |\n | Execution:\n | records returned: 1\n | peak memory usage: 4.00 KiB (4,096 B)\n |\n └── • Compute\n | $v_5: array_get($v_4, 0L)\n |\n | Execution:\n | records returned: 1\n |\n └── • Compute\n | $v_4: sortPaths(array($record_1.date_placed), [date_placed ASC])\n |\n | Execution:\n | records returned: 1\n |\n └── • Filter\n | expression: $eq($user_id_1, 1,234)\n |\n | Execution:\n | records returned: 1\n |\n └── • TableScan\n source: **/my_collection\n order: STABLE\n properties: * - { __create_time__, __update_time__ }\n output record: $record_1\n output bindings: {$user_id_1=user_id}\n variables: [$record_1, $user_id_1]\n\n Execution:\n records returned: 1\n records scanned: 1\n\nWhat's next\n\n- To learn about the execution tree nodes, see the [Query execution reference](/docs/firestore/enterprise/query-explain-reference).\n- To learn how to optimize your queries, see [Optimize query execution](/docs/firestore/enterprise/optimize-query-performance)."]]