MongoDB 互換の Firestore Enterprise エディションが利用可能になりました。
詳細
料金設定の例
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
Cloud Firestore Enterprise エディションにのみ関連します。
|
このページでは、最も一般的なシナリオで課金単位がどのように計算されるかの例を示します。各クエリで処理されるデータは、クエリプラン、データの形状、使用可能なインデックスなどの要因によって異なる場合があります。
特定のクエリの費用とパフォーマンスをより深く理解するには、クエリの説明機能を使用することをおすすめします。
読み取りオペレーション
ほとんどの読み取りオペレーションでは、特定のドキュメントのポイント読み取りを実行するか、識別子に基づいてデータの範囲をスキャンします。読み取りオペレーションは読み取りユニットを消費します。読み取り単位は 4 KiB トランシェで計算されます。次の例をご覧ください。
ポイント読み取り
ポイント読み取りの課金の例:
- 1 つの 1 KiB ドキュメントのポイント読み取り。消費: 1 読み取り単位
- 単一の 4 KiB ドキュメントのポイント読み取り。消費: 1 読み取り単位
- 1 つの 1 MiB ドキュメントのポイント読み取り。消費量: 256 読み取り単位
- 100 個のドキュメントのポイント読み取り(各 1 KiB)。消費量: 100 読み取りユニット
スキャン
次の例には、ドキュメントまたはインデックス エントリをスキャンするシナリオが含まれています。
ドキュメントのスキャン
- 100 個のドキュメント(それぞれ 1 KiB)をスキャンするクエリ。消費: 25 読み取りユニット
インデックスのスキャン
スキャンする対象がドキュメントかインデックスかに関係なく、スキャン費用(バイト単位)は同じです。ただし、インデックス エントリのサイズは小さくなることがよくあります。そのため、多くの場合、より費用対効果の高いデータ スキャン方法を提供できます。
- 100 個のインデックス エントリ(各 1 KiB)をスキャンするクエリ。消費量: 25 読み取り単位。
- 100 個のインデックス エントリ(それぞれ 128 バイト)をスキャンするクエリ。消費: 4 読み取り単位。
ドキュメントまたはインデックス エントリの最小サイズ
状況によっては、クエリを満たすためにドキュメントやインデックス エントリの内容を読み取る必要がない場合があります。これには、コレクション内のドキュメントの総数をカウントするなどの単純なカウントクエリが含まれます。このような状況では、スキャンされたアイテムごとに最小コストの 32 バイトが適用されます。
- コレクション内のドキュメント数をカウントします。クエリはコレクション内の 1,000 個のアイテムをスキャンします。消費: 8 読み取りユニット。
スキャンとポイント読み取りの組み合わせ
多くのクエリは、オペレーションを満たすためにスキャンとポイント読み取りを組み合わせて実行します。
- 128 個のインデックス エントリ(それぞれ 256 バイト)をスキャンし、128 個のドキュメント(それぞれ 4 KiB)のポイント読み取りを実行するクエリ。消費量: 136 読み取り単位(内訳は次のとおり)。
- ポイント読み取りの読み取り単位 128 個
- インデックス スキャン用の 8 個の読み取りユニット
Query Explain
クエリの説明を使用すると、データベースがクエリを実行する方法を理解できます。提供された詳細は、クエリの最適化に役立ちます。
Query Explain を使用する場合は、次の費用が適用されます。
- クエリを実行する Query Explain: クエリ費用が適用されます。
- プランのみのオプションを使用する Query Explain。消費量: 1 読み取りユニット(クエリの最小コスト)
書き込みオペレーション
書き込みオペレーション(作成、更新、削除)は、オペレーション中に作成、変更、削除されるドキュメントとインデックスのサイズに基づいて課金されます。書き込みオペレーションは書き込みユニットを消費します。書き込み単位は 1 KiB トランシェで計算されます。
ドキュメント ID による更新などの単純な書き込みオペレーションでは、書き込みの費用のみが発生します。オペレーションを満たすためにクエリを必要とする書き込みオペレーションでは、クエリに関連する読み取り費用も発生します。
次の例をご覧ください。
作成
- インデックスのない 10 KiB の新しいドキュメントを作成します。消費: 10 個の書き込みユニット
- コレクションに 256 バイトのインデックス エントリが 1 つある 1 KiB のドキュメントを作成します。消費: 2 書き込みユニット
更新
- ドキュメント ID で 10 KiB のドキュメントを検索し、コレクションにインデックスがない状態で更新します。消費: 10 個の書き込みユニット
- ドキュメント ID で 1 KiB のドキュメントを検索し、256 バイトのインデックス エントリで 1 つのフィールドを更新します。消費: 3 書き込みユニット。注: この状況でインデックス エントリを更新すると、2 つの書き込みユニットが消費されます。1 つはインデックス エントリの削除、もう 1 つはインデックス エントリの再作成に使用されます。
- ドキュメント ID で 1 KiB のドキュメントを見つけて、何も更新しません(変更なし)。消費: 1 書き込みユニット(最小書き込み費用)
- コレクション内のすべての 1 KiB ドキュメントをクエリして 1, 000 個のドキュメントをスキャンし、コレクションにインデックスのない新しい 256 バイトのフィールドを挿入します。1,000 個の読み取りユニットと 1, 000 個の書き込みユニット。
削除
- コレクションに 1 つのインデックスがある 1 KiB のドキュメントを削除します。消費: 2 個の書き込みユニット
- コレクションにインデックスがない 1 KiB のドキュメントを削除します。消費: 1 書き込みユニット
インデックスのビルド
インデックスのビルドでは、ビルド オペレーション中に作成または変更されたインデックス エントリに対して課金されます。これらの費用は、インデックス定義が追加または削除されるたびに発生します。インデックス エントリの課金は、1 KiB あたり 1 書き込みユニットが発生する書き込みと同じです。
- 500 個のドキュメントを含むコレクションの新しいインデックスを作成します。作成されるインデックス エントリはそれぞれ 1 KiB です。500 個の書き込みユニットを消費します。
- 500 個のドキュメントを含むコレクションの既存のインデックスを削除します。削除されるインデックス エントリはそれぞれ 1 KiB です。500 個の書き込みユニットを消費します。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 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 includes examples of how billing units are calculated in\nsome of the most common scenarios. Note that each query might differ in data\nprocessed based on factors such as the query plan, the shape of the data,\nand the indexes available.\n\nWe recommend using the [Query Explain](/docs/firestore/enterprise/query-explain) feature to better\nunderstand the cost and performance of your specific queries.\n\nRead operations\n\nMost read operations entail either performing a point read of a specific\ndocument or scanning a rage of data based on an identifier.\nRead operations consume read units. Read units are calculated in 4 KiB tranches. See the following examples.\n\nPoint reads\n\nExample billing for point reads:\n\n- Point read of a single 1 KiB document. Consumes: 1 read unit\n- Point read of a single 4 KiB document. Consumes: 1 read unit\n- Point read of a single 1 MiB document. Consumes: 256 read units\n- Point read of 100 documents, 1 KiB each. Consumes: 100 read units\n\nScanning\n\nThe following examples include scenarios that scan documents or index entries.\n\nScanning Documents\n\n- Query which scans 100 documents, 1 KiB each. Consumes: 25 read units\n\nScanning indexes\n\nThe scanning cost, in terms of bytes, is the same regardless of whether it is a\ndocument or index being scanned. However, index entries are often smaller\nin size. As a result, they can often provide a more cost effective way of scanning data.\n\n- Query which scans 100 index entries, 1 KiB each. Consumes: 25 read units.\n- Query which scans 100 index entries, 128 bytes each. Consumes: 4 read units.\n\nMinimum document or index entry size\n\nIn certain situations it may not be necessary to read the contents of a\ndocument or index entry to satisfy a query. This includes simple count queries\nlike counting the total number of documents in a collection.\nIn these situations, a minimum cost of 32 bytes applies per item scanned.\n\n- Count the number of documents in a collection. The query scans 1000 items in the collection. Consumes: 8 read units.\n\nCombination of scanning and point reads\n\nMany queries perform a combination of scanning and point reads to satisfy an\noperation.\n\n- Query which scans 128 index entries, 256 bytes each and performs a point read of 128 documents, 4 KiB each. Consumes: 136 read units, comprised of:\n - 128 read units for point reads\n - 8 read units for index scans\n\nQuery Explain\n\n[Query Explain](/docs/firestore/enterprise/query-explain) helps you understand how the database\nexecutes your queries. The details provided can help you optimize your\nqueries.\n\nThe following costs apply when using Query Explain:\n\n- Query Explain which executes the query: Query cost applies.\n- Query Explain using plan only option. Consumes: 1 read unit (minimum cost of a query)\n\nWrite operations\n\nWrite operations (creates, updates and deletes) are charged based on the\nsize of the documents and indexes being created, modified, or deleted during the\noperation. Write operations consume write units. Write units are calculated in 1\nKiB tranches.\n\nSimple write operations, like update by document ID, only incur the cost of the writes.\nWrite operations which require querying to satisfy the operation will\nadditionally incur the read costs associated with the query.\n\nSee the following examples.\n\nCreates\n\n- Create a new 10 KiB document with no indexes. Consumes: 10 write units\n- Create a 1 KiB document with 1 index entry of 256 bytes on the collection. Consumes: 2 write units\n\nUpdates\n\n- Find a 10 KiB document by document ID and update with no indexes on the collection. Consumes: 10 write units\n- Find a 1 KiB document by document ID and update 1 field with 1 index entry of 256 bytes. Consumes: 3 write units. Note: Updating an index entry in this situation consumes 2 write units -- one to delete and one to recreate the index entry.\n- Find a 1 KiB document by document ID and update nothing (no changes). Consumes: 1 write units (the minimum write costs)\n- Query all 1 KiB documents in a collection, which scans 1,000 documents, and insert a new 256 bytes field with no indexes on the collection: 1000 read units and 1000 writes units.\n\nDeletes\n\n- Delete a 1 KiB document, which has 1 index on the collection. Consumes: 2 write units\n- Delete a 1 KiB document, which has no indexes on the collection. Consumes: 1 write unit\n\nIndex builds\n\nIndex builds charge for the index entries created or modified during the build\noperation. These costs are incurred anytime an index definition is added or\nremoved. The index entries are billed identically to writes incurring 1 write\nunit per 1KiB.\n\n- Create a new index for a collection containing 500 documents, index entries created are 1 KiB each. Consumes 500 write units.\n- Delete an existing index for a collection containing 500 documents, index entries deleted are 1KiB each. Consumes 500 write units."]]