クエリの指標について説明します。
JSON 表現 |
---|
{ "planSummary": { object ( |
フィールド | |
---|---|
planSummary |
クエリの計画フェーズの情報。 |
executionStats |
クエリの実行によって集計された統計情報。 |
プランの概要
クエリの計画フェーズの情報。
JSON 表現 |
---|
{ "indexesUsed": [ { object } ] } |
フィールド | |
---|---|
indexesUsed[] |
クエリに対して選択されたインデックス。例: [ {"queryScope": "Collection", "properties": "(foo ASC, name ASC)"}, {"queryScope": "Collection", "properties": "(bar ASC, name ASC)"} ] |
ExecutionStats
クエリの実行統計情報。
JSON 表現 |
---|
{ "resultsReturned": string, "executionDuration": string, "readOperations": string, "debugStats": { object } } |
フィールド | |
---|---|
resultsReturned |
返された結果の総数(ドキュメント、射影、集計結果、キーを含む)。 |
executionDuration |
バックエンドでクエリを実行するためにかかった合計時間。
|
readOperations |
課金対象の読み取りオペレーションの合計数。 |
debugStats |
クエリの実行から統計情報をデバッグする。デバッグの統計情報は、Firestore の進化に応じて変化する可能性があります。たとえば、{ "indexes_entries_scanned": "1000", "documents_scanned": "20", "billing_details": { "documents_billable": "20", "index_entries_billable": "1000", "min_query_cost": "0"} } |